1、特殊符号 \n 的转换逻辑
import json
x = {'test': "测试\n"} # python 中的字典结构
x_json = json.dumps(x, ensure_ascii=False)
x_json # '{"test": "测试\\n"}' 这里看上去稍微有一点特殊,本质就是转义 json 字符串。
print(x_json) # {"test": "测试\n"}
#
标签:python,特殊符号,json,注意,测试,test,ascii
From: https://www.cnblogs.com/Gelthin2017/p/17453727.html