repr() method
class Employee:
def \_\_init\_\_(self, name):
self.name = name
def \_\_repr\_\_(self):
return self.name
john = Employee('John')
print(john) # => John
Comments
class Employee:
def \_\_init\_\_(self, name):
self.name = name
def \_\_repr\_\_(self):
return self.name
john = Employee('John')
print(john) # => John