5/27/2004
50 Foot Wave
Comment on this post [ so far] ... more like this: [music]
Global variables and my confusion
amount = 12 price = 23 def function1(): amount += 1 def function2(): amount = price amount += 1 print "Amount is: ", amount def function3(): global amount amount += 1 print "Amount is: ", amount if __name__ == "__main__": function1() function2() function3()
Comment on this post [ so far] ... more like this: [python]