Guest User

Untitled

a guest
May 20th, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. def A():
  2.     def B():
  3.         pass
  4.     B()
  5.  
  6. def C():
  7.     A()
  8.     B()  # failed
  9.  
  10. #################################
  11. def A():
  12.     B()
  13.  
  14. def B():
  15.     pass
  16.  
  17. def C():
  18.     A()
  19.     B()
Advertisement
Add Comment
Please, Sign In to add comment