Adding source code files for Chapter 6
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#inner1.py
|
||||
|
||||
def outer_hello():
|
||||
print ("Hello from outer function")
|
||||
def inner_hello():
|
||||
print("Hello from inner function")
|
||||
inner_hello()
|
||||
|
||||
outer_hello()
|
||||
Reference in New Issue
Block a user