Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- In [1]: class Foo:
- ...: pass
- In [2]: print(Foo())
- <__main__.Foo object at 0x7fad57712400>
- In [3]: class Bar:
- ...: def __repr__(self):
- ...: return "Ahihi"
- In [4]: print(Bar())
- Ahihi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement