__author__ = 'dell'

def func():
    global x
    print 'x is ', x
    x = 2
    print 'Changed local to ', x


x = 50
func()

print 'Value of x is ', x