首页
归类
搜索
友链
留言
关于
乱码
Zhangwenniu 于 2022-09-23 发布
在open文件的时候,声明编码格式是’utf-8’的,这样文件就不会乱码了。
file
=
open
(
'file.txt'
,
'w'
,
encoding
=
'utf-8'
)