Below is my code requirement :
Class Employee:
def __init__(self,age):
self.age= age
main():
Mike = new Employee(20)
NamedEmployee = "Mike"
# Need some logic to refer Mike Object with value given in NamedEmployee
string
# example
print(NamedEmployee.age) -- expect 20 here.
Need some insights in how to achieve this in python.