def outer_func():
def inner_func():
print('Hello from inner_func')
inner_func()
outer_func()
# expected output: 'Hello from inner_func'
Python
Setting up Python environment...
Output
def outer_func():
def inner_func():
print('Hello from inner_func')
inner_func()
outer_func()
# expected output: 'Hello from inner_func'
Setting up Python environment...