Guest User

glob_var

a guest
Oct 31st, 2011
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. name_of_variable = [1,2,3]
  2.  
  3. def name_of_function():
  4.     global name_of_variable
  5.     for num in name_of_variable:
  6.         print num
  7.  
  8.  
  9.    
  10.  
Advertisement
Add Comment
Please, Sign In to add comment