Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Can I use namedtuple?
  2. | YES
  3. |------------------------- Use namedtuple
  4. | |Only two/three fields, forever?
  5. | |---------------------------------- Consider tuples
  6. |
  7. |
  8. |
  9. |
  10. |--Do I need order?
  11. | YES
  12. |------------------------ Use list
  13. |
  14. |
  15. |
  16. |--- Can I have duplicates?
  17. | YES
  18. |------------------------------- Use Counter
  19. |
  20. |
  21. |
  22. |
  23. |-------------------------- Use set
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement