Advertisement
Guest User

wtf

a guest
May 26th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. def foo():
  2.     global x
  3.     x = 2
  4.  
  5. def bar():
  6.     x = 3
  7.  
  8. foo()
  9. bar()
  10. print x
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement