Variable Scope in Functions : Variable Scope : Function PYTHON TUTORIALS


PYTHON TUTORIALS » Function » Variable Scope »

 

Variable Scope in Functions


x = 10
def func() :
    x = 20
    print "in function func, x = ", x

def gfunc() :
    global x
    x = 20
print "in function gfunc, x = ", x

print "Initially, x = ", x
func()
print "After func, x = ", x
gfunc()
print "After gfunc, x = ", x



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Function
» Variable Scope