Facebook
From vendetto_01, 3 Years ago, written in Python.
This paste is a reply to Gerisayım Kodu from vendetto_01 - view diff
Embed
Download Paste or View Raw
Hits: 145
  1. #ÇÖZÜLDÜ- Sorun 13. satırda print(countdown(y)) yerine print(countdown) yazmammış.
  2.  
  3. y = int(input("type numbers: "))
  4.  
  5. def countdown(y):
  6.         if y == 0:
  7.                 print("Boom")
  8.         else:
  9.                 print(y)
  10.                 countdown(y-1)
  11.  
  12.        
  13. print(countdown(y))
  14.  
  15.