Create 1 - Blast Up.py

This commit is contained in:
Lukas Baumann 2021-02-17 12:42:41 +01:00 committed by GitHub
parent cd90dbdf7d
commit 01b3dfc1fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

6
16/1 - Blast Up.py Normal file
View File

@ -0,0 +1,6 @@
def countup(n):
if n>1:
countup(n - 1)
else:
print('Blastoff!')
print(n)