Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class Anything(object):
  2.  
  3. def __eq__(self, other):
  4. return True
  5.  
  6. def __lt__(self, other):
  7. return True
  8.  
  9. def __le__(self, other):
  10. return True
  11.  
  12. def __gt__(self, other):
  13. return True
  14.  
  15. def __ge__(self, other):
  16. return True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement