Появляется вот такая ошибка:
File "D:\Python\хз.py", line 7
while t:
^
IndentationError: expected an indented block after function definition on line 5
Вот мой код (не обращайте внимание на комментарии с #, я для друга написал, ему помогаю а сам не понимаю...):
import time
# The countdown function is defined below
def countdown(t):
while t:
mins, secs = divmod(t, 60)
timer = '{:02d}:{:02d}'.format(mins, secs)
print(timer, end="\r")
time.sleep(1)
t -= 1
print('Lift off!')
# Ask the user to enter the countdown period in seconds
t = input("Enter the time in seconds: ")
# function call
countdown(int(t))