脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python在文本开头插入一行的实例

python在文本开头插入一行的实例

2021-02-08 00:42Bran-Yang Python

下面小编就为大家分享一篇python在文本开头插入一行的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

问题

对于一个文本文件,需要在起开头插入一行,其他内容不变

解决方法

python" id="highlighter_173830">
?
1
2
3
4
with open('article.txt', 'r+') as f:
 content = f.read() 
 f.seek(0, 0)
 f.write('writer:fatsheep\n'+content)

其中字符串'writer:fatsheep\n'中为要插入的内容。

效果

python在文本开头插入一行的实例

运行代码后:

python在文本开头插入一行的实例

注意

f.seek(0, 0)不可或缺,file.seek(off, whence=0)在文件中移动文件指针, 从 whence ( 0 代表文件其始, 1 代

表当前位置, 2 代表文件末尾)偏移 off 字节

如果没有它运行的结果就是:

python在文本开头插入一行的实例

以上这篇python在文本开头插入一行的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/tintinetmilou/article/details/75947904

延伸 · 阅读

精彩推荐