Python - Structured Data Files
This Python code tries to load JSON data but causes an error:
What is the main problem?
import json
bad_json = '{"name": "Bob", age: 25}'
data = json.loads(bad_json)What is the main problem?
