Facebook
From vendetto_01, 3 Years ago, written in Python.
This paste is a reply to Gerisayım Kodu from vendetto_01 - go back
Embed
Viewing differences between Gerisayım Kodu and Re: 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))
        
print(countdown(y))