- 博客(3)
- 资源 (5)
- 收藏
- 关注
原创 更新VSCode后,使用!+tab键无法自动生成HTML文件格式头
最新版vscode更新后,生成HTML模板的快捷方式已经改了,原来的 !+tab 不能使用了,已经修改成html:5 + tab 了!
2022-07-09 21:13:00 24402
原创 python3的json中包含中文的dump和load操作
import json data = {"name":"王二小"} with open("data.json", "w", encoding="utf-8") as f: json.dump(data,f,ensure_ascii=False) with open("data.json", "r", encoding="utf-8") as f: data = json.load(f) print(data)
2020-06-11 16:43:47 518
原创 python使用json.dump()的中文编码问题
当json中有中文字符串时,需要在open时加上encoding=‘utf-8',dump时加上ensure_ascii=False,如下所示:
2018-06-12 10:58:05 12999
集体智慧编程原书代码-programing collective intelligence
2018-10-25
resnet18 train.prototxt solver.prototxt
2018-05-30
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人