Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/python3
- def x():
- print("Fk")
- def y():
- print("My")
- def z():
- print("Life")
- z() #Call the inner most function inside y()
- y() # Call the inner function inside x()
- # Call the outer function
- x()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement