How can i insert a string at the beginning of each line in a text file, i have the following code:
f = open('./ampo.txt', 'r+')
with open('./ampo.txt') as infile:
for line in infile:
f.insert(0, 'EDF ')
f.close
i get the following error:
"'file' object has no attribute 'insert'"
Please note that im a complete programming n00b.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…