Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. def outer_function():
  2. message = 'Hi'
  3.  
  4. def inner_function():
  5. print(message)
  6.  
  7. return inner_function()
  8.  
  9. my_func = outer_function()
  10.  
  11. my_func()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement