Skip to content

Instantly share code, notes, and snippets.

@Vendetto-01
Created September 18, 2020 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Vendetto-01/a8817da410b98c797de692ce4bd6efa2 to your computer and use it in GitHub Desktop.
Save Vendetto-01/a8817da410b98c797de692ce4bd6efa2 to your computer and use it in GitHub Desktop.
Gerisayım Kodu
#ÇÖZÜLDÜ- Sorun 13. satırda print(countdown(y)) yerine print(countdown) yazmammış.
y = int(input("type numbers: "))
def countdown(y):
if y == 0:
print("Boom")
else:
print(y)
countdown(y-1)
print(countdown(y))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment