Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. code1
  2. Out[83]:
  3. 0 ['hair', 'body']
  4. 1 ['hair', 'body']
  5. 2 ['hair', 'body']
  6. Name: personal_interests, dtype: object
  7.  
  8. code1.tolist()
  9. Out[79]: ["['hair', 'body']", "['hair', 'body']", "['hair', 'body']"]
  10.  
  11. example = [['hair', 'body'],
  12. ['hair', 'body'],
  13. ['hair', 'body']]
  14. example
  15. Out[94]: [['hair', 'body'], ['hair', 'body'], ['hair', 'body']]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement