mirror of
https://github.com/WMK965/965-Python-Learning-Repo.git
synced 2025-04-27 14:03:22 +00:00
8 lines
147 B
Python
Executable File
8 lines
147 B
Python
Executable File
import chardet
|
|
|
|
|
|
data = open(file="./resources/444.txt", mode='rb')
|
|
result = chardet.detect(data.read())
|
|
result = result["encoding"]
|
|
print(result)
|