Guest User

Untitled

a guest
Sep 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. >>> class spurdo:
  2.     def __eq__(self, shit):
  3.         if shit == 5:
  4.             return True
  5.         else:
  6.             return False
  7.  
  8.        
  9. >>> a = spurdo()
  10. >>> a == 5
  11. True
  12. >>> 5 == a
  13. True
Add Comment
Please, Sign In to add comment