Hey guys can anyone explain that output to me?
Don't get why its counting down again.
def kaboom(i):
print("first Print: ", i)
if i < 3:
kaboom(i+1)
print("second Print: ", i)
OUTPUT:
first Print: 1
first Print: 2
first Print: 3
second Print: 3
second Print: 2
second Print: 1