标签:句柄 open open() read 模式 pen 参数 mode 告诉
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:
标签:句柄 open open() read 模式 pen 参数 mode 告诉
原文地址:https://www.cnblogs.com/deja/p/8870596.html