Guest User

Untitled

a guest
Oct 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. >>> class Cris(object):
  2. ...   favorites = ['python', 'zope', 'plone', 'django', 'pyramid']
  3. ...   def __lt__(self, other):
  4. ...     if other == 3:
  5. ...       import random
  6. ...       print random.choice(self.favorites)
  7. ...
  8. >>> cris = Cris()
  9. >>> cris <3
  10. zope
  11. >>> cris <3
  12. django
  13. >>> cris <3
  14. python
  15. >>>
Add Comment
Please, Sign In to add comment