码迷,mamicode.com
首页 > 编程语言 > 详细

python操作文件注意点

时间:2019-05-12 14:07:47      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:字节   文件头   str   readline   with   set   移动   bsp   单位   

1.常用格式

with open(r"文件名",r(打开方式)) as f:

  strline=f.readline()

  while strline:

    print(strline)

    strline = f.readline()

 

with open(r"文件名",r(打开方式)) as f:

  l= list(f)

  for line in l:

    print(line)

2.文件操作

seek(offset,from) 移动指针

offset 是你需要开始读取的字节位置  (移动单位为字节)

form范围:0 表示从文件头、1 表示从当前位置、2 表示从文件末尾

tell 用来显示文件读写指针的当前位置

python操作文件注意点

标签:字节   文件头   str   readline   with   set   移动   bsp   单位   

原文地址:https://www.cnblogs.com/youyixiaobai/p/10851992.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!