影响
序列化Python对象unity json字符串转字典unity json字符串转字典游戏开发素材音乐音效,方便存储和传输
将 Python 对象与 JSON 字符串相互转换
Python 对象到 JSON 字符串
import json
data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ]
json_str = json.dumps(data, ensure_ascii=False) # 设置ensure_ascii=False以支持中文
print(type(json_str))
print(json_str)
结果是
[{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}]
JSON 字符串到 Python 对象
import json
json_str = '[{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}]'
data = json.loads(json_str)
print(type(data))
print(data)
结果是
[{'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5}]
Python对象通过JSON读写文件
Python 对象可以转换为 JSON 字符串,字符串可以正常读取和写入文件。