1. 程式人生 > >python 備忘

python 備忘

安裝pip
python -m ensurepip

pip3 install xxx

判斷文字檔案的字元編碼

import chardet
filePath = "C:\\Users\\Administrator\\Desktop\\word.txt"
file = open(filePath ,‘rb’)
contents = file.read()
print(chardet.detect(contents ))