共计 704 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 json 模块来处理 JSON 数据。可以使用以下方法来使用 json 模块:
- 将 Python 对象转换为 JSON 字符串:
import json
data = {'name': 'John', 'age': 30, 'city': 'New York'}
json_string = json.dumps(data)
print(json_string)
- 将 JSON 字符串转换为 Python 对象:
import json
json_string = '{"name": "John", "age": 30, "city": "New York"}'
data = json.loads(json_string)
print(data)
- 将 JSON 数据写入文件:
import json
data = {'name': 'John', 'age': 30, 'city': 'New York'}
with open('data.json', 'w') as f:
json.dump(data, f)
- 从文件中读取 JSON 数据:
import json
with open('data.json', 'r') as f:
data = json.load(f)
print(data)
这些是使用 json 模块处理 JSON 数据的基本方法。您可以根据需要进一步探索 json 模块的功能和方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完