24
loading...
This website collects cookies to deliver better user experience
def display_hello(i):
while(i > 0):
print("hello world")
i -=1
def display_hello(i):
if i>0:
def display_hello(i):
if i>0:
print("hello world")
def display_hello(i):
if i>0:
print("hello world")
display_hello(i-1)
display_hello(3)
def display_hello(i):
if i > 0:
print("hello world!")
display_hello(i-1)
print(f'The i value is {i}')