1
1
Fork 0
PythonLearning/Blastoff/blastoff.py
SeaswimmerTheFsh 4fb81b2c78
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 11s
one name directories with no special characters
2024-04-29 19:15:32 -04:00

27 lines
No EOL
490 B
Python

from time import sleep
def countdown(n: int) -> None:
if n <= 0:
print('Blastoff!')
else:
print(n)
sleep(1)
countdown(n-1)
def countup(n: int) -> None:
if n >= 0:
print('Blastoff!')
else:
print(n)
sleep(1)
countup(n+1)
def count(n: int) -> None:
if int(n) >= 0:
countdown(n)
else:
countup(n)
if __name__ == "__main__":
num = input("Enter a number: ")
count(int(num))