标题: [问题求助] Python如何把字符串加到文件行首? [打印本页]
作者: netdzb 时间: 2020-12-31 18:07 标题: Python如何把字符串加到文件行首?
- fo = open("01.txt","r+")
- fo.seek(0, 0)
- fo.write('coding.\n')
- fo.close()
复制代码
我已经移动了文件指针了,还是把字符串加到了文件尾。
作者: regabc 时间: 2021-4-15 14:43 标题: RE: Python如何把字符串加到文件行首?
with open('new.txt', 'r+', encoding='utf-8') as fp:
con = fp.read()fp.seek(0)
fp.write('Hello world\n'+con)
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |