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 ...
0
votes
1answer
89 views

Python: Parse Text file with '|' to MySql table

I have a text file which has the following structure: 341|18 Hello world|20090225230048AAnhStI|90|$0.30|10|289|2|2|2|Is that foo or boo bar? 18 |Is it boo foo and foo bar?| |I beleive its ...
0
votes
0answers
2k views

Python: Appending to a text file [closed]

Possible Duplicates: Confused with appending to text file How can I write to the textfile with “while”? text_file = open("write_it.txt", "a") while 1: word = ...
-1
votes
4answers
106 views

weird string behavior after reading from text file in python

I am reading a text file which I know its 38th line is "Uncalibrated Peaks:", and I know its stored in 38th element of my list. I already check them and there is no indexing problem. I am reading the ...