# argdemo1.py

i = 5

def f(arg=i):
     print 'arg = ', arg

i = 6
f()
