摘要:
python 文件操作之指针 一:文件内指针移动的单位是什么? 1:t模式 从硬盘中读出二进制 >解码的到字符串 >你好呀hello word 只有t模式下,read(n),n是字符个数 with open('a.txt', mode='rt',encoding='utf-8') as f: dat 阅读全文
摘要:
一:文件内指针移动的单位是什么? 读出二进制解码的到的字符串: 只有t模式下,read(n),n是字符个数 with open('a.txt', mode='rt',encoding='utf-8') as f: # 你好呀hello word data = f.read(6) print(f.te 阅读全文