1. 首页
  2. 编程语言
  3. Python
  4. chardet 2.1.1.tar.gz

chardet 2.1.1.tar.gz

上传者: 2021-04-19 06:36:53上传 GZ文件 174.75KB 热度 15次
3、判断文件编码的参考代码如下: file = open(fileName, "rb")#要有"rb",如果没有这个的话,默认使用gbk读文件。 buf = file.read() result = chardet.detect(buf) file = open(fileName,"r",encoding=result["encoding"]) content = file.readlines()
用户评论