class Employee: def __init__(self, name): self.name = name E1=Employee("Employee name1") print(E1.name)