Python - Classes and Object Lifecycle
What will be the output of this code?
class Employee:
def __init__(self, id):
self.id = id
e1 = Employee('E123')
e2 = Employee('E456')
print(e1.id, e2.id)