文件句柄W模式
Posted dongyanyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件句柄W模式相关的知识,希望对你有一定的参考价值。
f1=open(‘lo‘,encoding=‘utf-8‘,mode=‘w‘)
f1.write(‘w4567‘)
print(f1.tell())
f1.close()
#tell 告诉指针的位置(按字节)
#seek(参数),seek(0,2) 调至最后 按照字节去调整光标的位置
with open(‘lo‘,encoding=‘utf-8‘) as f1:
print(f1.read()
#with open()as:
以上是关于文件句柄W模式的主要内容,如果未能解决你的问题,请参考以下文章