Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. # Local versus Global
  2.  
  3. # we define a function, called local
  4. def local():
  5. m = 7
  6. print(m)
  7.  
  8. m = 5
  9. print(m)
  10.  
  11. # we call, or `execute` the function local
  12. local()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement