Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. data = {
  2. "firstName": "Jane",
  3. "lastName": "Doe",
  4. "hobbies": ["running", "sky diving", "singing"],
  5. "age": 35,
  6. "children": [
  7. {
  8. "firstName": "Alice",
  9. "age": 6,
  10. "hobbies": ["swimming", "painting"]
  11. },
  12. {
  13. "firstName": "Bob",
  14. "age": 8,
  15. "hobbies": ["video games", "soccer"]
  16. }
  17. ]
  18. }
  19.  
  20. firstName.Jane
  21. lastName.Doe
  22. hobbies.running
  23. hobbies.sky diving
  24. hobbies.singing
  25. age.35
  26. children[0].firstname.Alice
  27. children[0].age.6
  28. children[0].hobbies.swimming
  29. children[0].hobbies.painting
  30. children[1].firstname.Bob
  31. children[1].age.8
  32. children[1].hobbies.video games
  33. children[1].hobbies.soccer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement