When I write to a file, using python open(filename, 'w+'), I get multiple lines of NULL written to the file in addition to the new text. Python 2.7.3
from sys import argv
script, filename, random = argv
my_file = open(filename, 'w+')
added_line = raw_input("Type what you want to add: ")
my_file.write(added_line)
print my_file.read()
my_file.close()
I am teaching myself and practicing opening and writing to files (obviously, I guess). I can get the program to run and prompt me for the new text. I also tried open(filename, 'a').
What am I missing?
Thank you.
.read()right after you write isn't going to do anything useful since the read pointer is at the end of the file, but that won't add any bytes, NULL or otherwise, to it.) – Wooble Sep 26 '12 at 11:59NULL NULL NULL.... – mipnix Sep 26 '12 at 12:08'w'? ('w+'truncates the file anyway). – Wooble Sep 26 '12 at 12:37