Tagged Questions
17
votes
3answers
8k views
Python: Is there a way to determine the encoding of text file?
I know there is something buried in here. But I was just wondering if there is an actual way built into Python to determine text file encoding?
Thanks for your help :)
Edit: As a side question, it ...
2
votes
1answer
195 views
Python open(“x”, “r”) function, how do I know or control which encoding the file is supposed to have?
If a python script uses the open("filename", "r") function to open, and subsequently read, the contents of a text file, how can I tell which encoding this file is supposed to have?
Note that since ...