Posted in Python onDecember 26, 2019
我就废话不多说了,直接上代码吧!
#!/usr/bin/python3 # -*- coding: utf-8 -*- import codecs import os import chardet def detectCode(path): with open(path, 'rb') as file: data = file.read(200000) dicts = chardet.detect(data) return dicts["encoding"] # 文件所在目录 if __name__ == '__main__': path = input("输入log文件路径: ") print(detectCode(path))
以上这篇python自动识别文本编码格式代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
python自动识别文本编码格式代码
- Author -
qq_34500270声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@