ong-z
8/1/2017 - 5:43 AM

Python 3 Class

Python 3 Class

>>> class Test:
...     def __repr__(self):
...         return "Test()"
...     def __str__(self):
...         return "member of Test"
... 
>>> t = Test()
>>> t
Test()
>>> print(t)
member of Test