代码如下;
import chardet
'''
chardet模块
使用该模块可以查看字符串的编码格式:chardet.detect()
'''
#假设存在一个a.txt的文件
f =open('/Users/zhouwentao/Desktop/m0009.sql','rb')
print(chardet.detect(f.read(100)))
最终输出如下:
代码如下;
import chardet
'''
chardet模块
使用该模块可以查看字符串的编码格式:chardet.detect()
'''
#假设存在一个a.txt的文件
f =open('/Users/zhouwentao/Desktop/m0009.sql','rb')
print(chardet.detect(f.read(100)))
最终输出如下:
本文标题:python查看sql文件的编码格式
本文链接:https://www.haomeiwen.com/subject/iugmdftx.html
网友评论