Tagged Questions
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 ...