Python - Structured Data Files
Consider this Python code:
What is the output?
import json
json_str = '{"valid": true, "items": [1, 2, 3]}'
obj = json.loads(json_str)
print(len(obj["items"]))What is the output?
