标签:nbsp 计算 write get fse file 偏移量 name 类型
1.文件基本的读取操作
f = open(‘chenli.txt‘) #打开文件 first_line = f.readline() print(‘first line:‘,first_line) #读一行 print(‘我是分隔线‘.center(50,‘-‘)) data = f.read()# 读取剩下的所有内容,文件大时不要用 print(data) #打印读取内容 f.close() #关闭文件
2.文件打开基本的读写追加 参数
"+" 表示可以同时读写某个文件
"b"表示以字节的方式操作
表示:以b方式打开时,读取到的内容是字节类型,写入时也需要提供字节类型,不能指定编码
2.编写拷贝文件程序
import sys #python3 copy.py source.file target.file if len(sys.argv) < 3: print(‘Usage:python3 copy.py source.file target.file‘) sys.exit() with open(r‘%s‘ %sys.argv[1],‘rb‘) as read_f, open(r‘%s‘ %sys.argv[2],‘wb‘) as write_f: for line in read_f: write_f.write(line)
3.文件内的光标移动
1. 文件打开方式为文本模式时,代表读取3个字符
2. 文件打开方式为b模式时,代表读取3个字节
3.其余的文件内光标移动都是以字节为单位如seek表示让光标跳转大到指定位置,tell显示光标那个字节,truncate
4. 语法格式:file.seek(offset, whence=0):
--> offset: 偏移量,需要向前或者是向后移动的字节数
--> whence: 可选值,默认为0, 可选值为1或者2,表示从何处开始计算偏移,具体来说,
--> 0表示从当前位置开始计算偏移
--> 1表示从文件头位置开始计算偏移
--> 2表示从文件尾开始计算偏移
标签:nbsp 计算 write get fse file 偏移量 name 类型
原文地址:http://www.cnblogs.com/wangshaojie/p/7190386.html