Files
Python-for-Geeks/Chapter6/innerfunction/inner1.py
T
2021-03-13 19:25:45 +04:00

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()