Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. im_outside = 42
  2.  
  3. def afunction():
  4.     print "Here is an outside variable as seen from a function: %d" % im_outside
  5.  
  6. print "Here is a variable I can see: %d" % im_outside
  7. afunction()