Create 1 - Blast Up.py
This commit is contained in:
parent
cd90dbdf7d
commit
01b3dfc1fa
6
16/1 - Blast Up.py
Normal file
6
16/1 - Blast Up.py
Normal file
@ -0,0 +1,6 @@
|
||||
def countup(n):
|
||||
if n>1:
|
||||
countup(n - 1)
|
||||
else:
|
||||
print('Blastoff!')
|
||||
print(n)
|
Loading…
Reference in New Issue
Block a user