Advertisement
KodingKid

Python JSON dictionaries

Mar 31st, 2021
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. import json
  2. x = '{"first_name":"Jack", "last_name":"Jonas"}'
  3. y = '{"first_name":"James", "last_name":"Johnson"}'
  4. z = '{"first_name":"Jude", "last_name":"Jonathon"}'
  5. #this is another way of creating a python dictionary - see this script for more information: https://pastebin.com/bf6VBk4X
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement