Guest User

Untitled

a guest
Sep 14th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. list1= [[1, ['dog', 'slow']],
  2. [1, [5, 4]],
  3. [1, ['mice', 'cat']],
  4. [2, ['cat', 'fast']],
  5. [2, [6, 6]],
  6. [2, ['cat', 'mice']],
  7. [3, ['tree', 'hurry']],
  8. [3, [7, 5]],
  9. [3, ['mice', 'cat']]]
  10.  
  11. col0 col1 col2 col3
  12. 1 ['dog', 'slow'] [5, 4] ['mice', 'cat']
  13. 2 ['cat', 'fast'] [6, 6] ['cat', 'fast']
  14. 3 ['tree', 'hurry'] [7, 5] ['mice', 'cat']
Add Comment
Please, Sign In to add comment