Facebook
From vendetto_01, 3 Years ago, written in Python.
Embed
Download Paste or View Raw
Hits: 127
  1. y = int(input("type numbers: "))
  2.  
  3. def countdown(y):
  4.         if y == 0:
  5.                 print("Boom")
  6.         else:
  7.                 print(y)
  8.                 countdown(y-1)
  9.  
  10. print(countdown(y))
  11.  

Replies to Gerisayım Kodu rss

Title Name Language When
Re: Gerisayım Kodu vendetto_01 python 3 Years ago.