python获取json关键字
时间: 2023-07-08 12:48:07 浏览: 110
python读取json文件
5星 · 资源好评率100%
你可以使用 Python 中的 json 模块来获取 JSON 数据中的关键字。具体而言,你可以使用 `json.loads()` 方法将 JSON 数据解析为 Python 对象,然后访问该对象的属性或键来获取关键字。例如,假设你有以下 JSON 数据:
```json
{
"name": "John",
"age": 30,
"city": "New York"
}
```
你可以使用以下代码从该 JSON 数据中获取关键字:
```python
import json
# JSON 数据
json_data = '{"name": "John", "age": 30, "city": "New York"}'
# 将 JSON 数据解析为 Python 对象
data = json.loads(json_data)
# 访问对象的属性或键以获取关键字
name = data['name']
age = data['age']
city = data['city']
# 打印获取的关键字
print(name, age, city)
```
输出结果应为:
```
John 30 New York
```
阅读全文