1
1
Fork 0

pylint fixes
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 12s

This commit is contained in:
SeaswimmerTheFsh 2024-04-29 19:20:03 -04:00
parent 4fb81b2c78
commit 00d34e7e2f
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F
11 changed files with 23 additions and 13 deletions

5
blastoff/README.md Normal file
View file

@ -0,0 +1,5 @@
# Blastoff
## 4/29/2024
wip

1
blastoff/__init__.py Normal file
View file

@ -0,0 +1 @@
# don't modify this file

27
blastoff/main.py Normal file
View file

@ -0,0 +1,27 @@
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))