python读写文件,如何将内容添加在文件开头呢

omefile.txt已经有内容了试过:f.open("somefile.txt",'r+')f.seek(0)开始f.write(),因为是写入多行... omefile.txt已经有内容了试过:f.open("somefile.txt",'r+')f.seek(0)开始f.write(),因为是写入多行数据,就会覆盖掉原有文件的一部分 展开
 我来答
小小落木
推荐于2016-11-01 · TA获得超过201个赞
知道小有建树答主
回答量:317
采纳率:0%
帮助的人:127万
展开全部
fp.seek(offset[,whence])
#将文件打操作标记移到offset的位置。这个offset一般是相对于文件的开头来计算的,一般为正数。但如果提供了whence参数就不一定了,whence可以为0表示从头开始计算,1表示以当前位置为原点计算。2表示以文件末尾为原点进行计算。需要注意,如果文件以a或a+的模式打开,每次进行写操作时,文件操作标记会自动返回到文件末尾。
拒绝访问ta
2018-03-14
知道答主
回答量:21
采纳率:25%
帮助的人:1.8万
展开全部

# coding: utf8
import os

f = open('a.txt', 'r')
content = f.read()  # 读取文件内容
f_new = open('b.txt', 'w')
f_new.write('look !')  # 开头写入内容
f_new.write(content)    # 写入原文件内容
f.close()
f_new.close()
os.remove('a.txt')  # 移除老文件
os.rename('b.txt', 'a.txt') # 新文件命名为老文件名


·········································································

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
咖行飞8815
2014-06-22 · 超过59用户采纳过TA的回答
知道答主
回答量:118
采纳率:0%
帮助的人:140万
展开全部
eek( offset[, whence]) Set the file's current position, like stdio's fseek(). The whence argument is optional and defaults to 0 (absolute file positioning); other values are 1 (seek relative to the current position) and 2 (seek relative to the file's end). There is no return value. Note that if the file is opened for appending (mode 'a' or 'a+'), any seek() operations will be undone at the next write. If the file is only opened for writing in append mode (mode 'a'), this method is essentially a no-op, but it remains useful for files opened in append mode with reading enabled (mode 'a+'). If the file is opened in text mode (mode 't'), only offsets returned by tell() are legal. Use of other offsets causes undefined behavior. Note that not all file objects are seekable. 查看原帖>>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式