Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class SomeClass:
  2. def __init__(self, x):
  3. self.x = x
  4.  
  5. def __repr__(self):
  6. return "({x})".format(x)
  7.  
  8. a = SomeClass(23)
  9. print(repr(a))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement