Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public_name = None
  2. def set_public_name():
  3. global public_name # makes no diff
  4. public_name = 'HELLO DERE'
  5.  
  6. from set_stuff_up import *
  7. print('public_name is',public_name)
  8. set_public_name()
  9. print('public_name is',public_name)
  10.  
  11. public_name is None
  12. public_name is None
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement