# globals.py # Walker M. White (wmw2) # September 20, 2012 """Module to show how global variables work""" a = 4 # Global variable def show_a(): """Display value of a""" print a def change_a(): """Change the value of a""" a = 3.5