Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. values = [
  2. ('a', 'b', 'c'),
  3. ('d', 'e'),
  4. ('f', 'g', 'h')
  5. ]
  6.  
  7. combinations = [
  8. ('a', 'd', 'f'),
  9. ('a', 'e', 'g'),
  10. ('a', 'e', 'h'),
  11. ('b', 'd', 'f'),
  12. ('b', 'e', 'g'),
  13. ('b', 'e', 'h'),
  14. ('c', 'd', 'f'),
  15. ('c', 'e', 'g'),
  16. ('c', 'e', 'h')
  17. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement