共计 929 个字符,预计需要花费 3 分钟才能阅读完成。
Python 中可以使用 json
模块来处理 JSON 数据。json
模块提供了一些方法来完成 JSON 数据和 Python 对象之间的转换。
-
将 JSON 字符串转换为 Python 对象:
使用json.loads()
函数将 JSON 字符串转换为 Python 对象。例如:import json json_str = '{"name": "Alice", "age": 25}' data = json.loads(json_str) print(data['name']) # 输出:Alice print(data['age']) # 输出:25
-
将 Python 对象转换为 JSON 字符串:
使用json.dumps()
函数将 Python 对象转换为 JSON 字符串。例如:import json data = {'name': 'Bob', 'age': 30 } json_str = json.dumps(data) print(json_str) # 输出:{"name": "Bob", "age": 30}
-
读取 JSON 文件并转换为 Python 对象:
使用json.load()
函数读取 JSON 文件并将其转换为 Python 对象。例如:import json with open('data.json') as f: data = json.load(f) print(data['name']) # 输出:Alice print(data['age']) # 输出:25
-
将 Python 对象转换为 JSON 并写入文件:
使用json.dump()
函数将 Python 对象转换为 JSON 字符串,并将其写入文件。例如:import json data = {'name': 'Bob', 'age': 30 } with open('data.json', 'w') as f: json.dump(data, f)
这些是处理 JSON 数据的基本方法,你可以根据具体的需求使用它们来进行 JSON 数据的处理。
丸趣 TV 网 – 提供最优质的资源集合!
正文完