python input json数据
时间: 2023-10-30 12:02:46 浏览: 101
Python如何读取、写入JSON数据
在 Python 中处理 JSON 数据需要使用 json 模块。可以使用 json.loads() 方法将 JSON 字符串转换为 Python 对象,使用 json.dumps() 方法将 Python 对象转换为 JSON 字符串。
下面是一个简单的例子,展示了如何读取 JSON 文件并将其转换为 Python 对象:
```
import json
# 读取 JSON 文件
with open('data.json', 'r') as f:
data = json.load(f)
# 打印 Python 对象
print(data)
```
如果 JSON 数据是从网络上获取的,可以使用 requests 库进行获取:
```
import requests
import json
# 获取 JSON 数据
response = requests.get('https://example.com/data.json')
# 将 JSON 数据转换为 Python 对象
data = json.loads(response.text)
# 打印 Python 对象
print(data)
```
注意:如果 JSON 数据中包含中文字符,需要在 json.loads() 方法中指定编码方式,例如:
```
data = json.loads(response.text, encoding='utf-8')
```
阅读全文