def inner_func():
print('Hello World')
def my_func():
for _ in range(3):
inner_func()
my_func()
Python
Setting up Python environment...
Output
def inner_func():
print('Hello World')
def my_func():
for _ in range(3):
inner_func()
my_func()
Setting up Python environment...