Happy清子 发表于 2019-2-27 23:18:08

python 判断txt文件的编码格式

import chardet

f = open('/path/file.txt',r)
data = f.read()
print(chardet.detect(data))


返回值会是类似这样的
一个是检测的可信度,另外一个就是检测到的编码:


{'confidence': 0.99, 'encoding': 'utf-8'}
---------------------


shaoheshaohe 发表于 2019-3-30 22:48:38

编码格式,Python2的老问题

shaoheshaohe 发表于 2019-3-30 22:49:12

python3应该基本没这个问题了

shaoheshaohe 发表于 2019-3-30 22:49:35

windows可直接用notepad++进行转换
页: [1]
查看完整版本: python 判断txt文件的编码格式