2008年01月11日 星期五 13:53
f = open('a.txt', 'r+') f.seek(a,b) # 把文件指针移到这个位置 # a=0 : 开始, a=1 : 当前, a=2 : 结尾 # b是距离a的位置 f.write('a') 只修改对应的字节数没问题,改多了会覆盖掉其它东西,挺麻烦的。 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://python.cn/pipermail/python-chinese/attachments/20080111/7d21e62b/attachment.html
2008年01月11日 星期五 16:45
恩,我明白了。关键在于这个打开方式,我以前用的 w ,这样会把文件以前的内容截断。 谢谢各位! 2008/1/11 john <john.about在gmail.com>: > f = open('a.txt', 'r+') > > > f.seek(a,b) # 把文件指针移到这个位置 > # a=0 : 开始, a=1 : 当前, a=2 : 结尾 > # b是距离a的位置 > f.write('a') > > 只修改对应的字节数没问题,改多了会覆盖掉其它东西,挺麻烦的。 > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > -- Jerry Lee University of Jinan
Zeuux © 2024
京ICP备05028076号