QUESTION: HOW OVERWRITE A LINE IN A FILE AFTER READING THE LINE?
By NOT making a new file, or reading the hole file, since the file has 123.500 lines.
for line in source:
newline = "+" + line
#write over the line in the file with newline
line = “HAHA”,
newline = “+HAHA”
How can i replace the newline with the line, in the file?
Either
The fileinput module can assist you with this, as demonstrated in this answer