python中import json怎么使用

72次阅读
没有评论

共计 1156 个字符,预计需要花费 3 分钟才能阅读完成。

在 Python 中,可以使用 import json 语句导入 json 模块,然后使用该模块中的函数和类来处理 JSON 数据。

下面是 json 模块的一些常用函数和类的示例用法:

  1. 将 JSON 字符串转换为 Python 对象:
import json

# JSON 字符串
json_str = '{"name": "John", "age": 30, "city": "New York"}'
# 将 JSON 字符串转换为 Python 对象
python_obj = json.loads(json_str)
print(python_obj)  # 输出: {'name': 'John', 'age': 30, 'city': 'New York'}
  1. 将 Python 对象转换为 JSON 字符串:
import json

# Python 对象
python_obj = {'name': 'John', 'age': 30, 'city': 'New York'}
# 将 Python 对象转换为 JSON 字符串
json_str = json.dumps(python_obj)
print(json_str)  # 输出: {"name": "John", "age": 30, "city": "New York"}
  1. 读取 JSON 文件并解析为 Python 对象:
import json

# 读取 JSON 文件
with open('data.json') as json_file:
    json_str = json_file.read()
# 解析 JSON 字符串为 Python 对象
python_obj = json.loads(json_str)
print(python_obj)
  1. 将 Python 对象写入 JSON 文件:
import json

# Python 对象
python_obj = {'name': 'John', 'age': 30, 'city': 'New York'}
# 将 Python 对象转换为 JSON 字符串
json_str = json.dumps(python_obj)
# 将 JSON 字符串写入文件
with open('data.json', 'w') as json_file:
    json_file.write(json_str)

这些只是 json 模块的一些基本用法示例,json模块还提供了其他函数和类来处理更复杂的 JSON 数据,你可以查看官方文档来了解更多信息:json – Python 标准库文档

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-02-05发表,共计1156字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)