Python - Structured Data Files
What will be the output of this Python code using JSON to load data?
import json
json_data = '{"city": "Paris", "population": 2148327}'
data = json.loads(json_data)
print(data["city"])