Advertisement
j0h

derp.py

j0h
Jan 24th, 2024
1,159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. #!/usr/bin/python3
  2.  
  3. def x():
  4.     print("Fk")
  5.  
  6.     def y():
  7.         print("My")
  8.  
  9.         def z():
  10.             print("Life")
  11.  
  12.         z() #Call the inner most function inside y()
  13.  
  14.     y()  # Call the inner function inside x()
  15.  
  16. # Call the outer function
  17. x()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement