你可以使用Python的json
模块来读取JSON文件。下面是一个简单的示例代码:
import json
# 打开JSON文件
with open('data.json') as file:
# 使用json.load()方法加载JSON数据
data = json.load(file)
# 读取数据
name = data['name']
age = data['age']
city = data['city']
# 打印数据
print('Name:', name)
print('Age:', age)
print('City:', city)
在上面的代码中,我们首先使用open()
函数打开JSON文件,并将其作为参数传递给json.load()
方法来加载JSON数据。然后,我们可以通过键访问JSON数据中的值,并将其存储在变量中。最后,我们打印出这些变量的值。
请注意,上述代码假设JSON文件的内容如下所示:
{
"name": "John",
"age": 25,
"city": "New York"
}
你需要将代码中的data.json
替换为你实际的JSON文件路径。