📌  相关文章
📜  如何在 python 代码示例中编辑文本文件中的特定行

📅  最后修改于: 2022-03-11 14:45:11.108000             🧑  作者: Mango

代码示例2
# with is like your try .. finally block in this case
with open('stats.txt', 'r') as file:
    # read a list of lines into data
    data = file.readlines()

print data
print "Your name: " + data[0]

# now change the 2nd line, note that you have to add a newline
data[1] = 'Mage\n'

# and write everything back
with open('stats.txt', 'w') as file:
    file.writelines( data )