json.load code example

Example 1: load json

import json

with open('data.txt') as json_file:
    data = json.load(json_file)

Example 2: json load

import json

with open('path_to_file/person.json') as f:
  data = json.load(f)

Example 3: python to json

# a Python object (dict):
x = {
  "name": "John",
  "age": 30,
  "city": "New York"
}

# convert into JSON:
y = json.dumps(x)

Example 4: json load

import json

with open('path_to_file/person.json') as f:
  data = json.load(f)

# Output: {'name': 'Bob', 'languages': ['English', 'Fench']}
print(data)

Tags: