Files
Python-for-Geeks/Chapter06/innerfunction/inner1.py
T
2021-08-13 11:44:51 +05:30

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