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.     print "But now I'm going to modify it..."
  6.     im_outside = 27
  7.     print "And here it is: %d" % im_outside
  8.  
  9. print "Here is a variable I can see: %d" % im_outside
  10. afunction()