

# https://www.globalsino.com/ICs/
# Global Access to the local variable in a dictionary with globals() 

Age = 100

def theFunc():
    listOfGlobals = globals()
    listOfGlobals['Age'] = 102
    age = 99
    print('Local age is ', age)
    
print('Age = ', Age)
theFunc()
print('Age is ', Age)
