10 lines
170 B
Python
10 lines
170 B
Python
#inner1.py
|
|
|
|
def outer_hello():
|
|
print ("Hello from outer function")
|
|
def inner_hello():
|
|
print("Hello from inner function")
|
|
inner_hello()
|
|
|
|
outer_hello()
|