3. Question 3 What is the method used to parse a string containing JSON data so that you can work with the data in Python? 1 point json.parse() json.loads() json.read() json.connect() code example
Example: json load from file python 3
import json
with open('file_to_load.json', 'r') as file:
data = json.load(file)