Python中tell()方法的使用详解


Posted in Python onMay 24, 2015

 tell()方法返回的文件内的文件读/写指针的当前位置。
语法

以下是tell()方法的语法:

fileObject.tell()

参数

  •     NA

返回值

此方法返回该文件中读出的文件/写指针的当前位置。
例子

下面的例子显示了tell()方法的使用。

#!/usr/bin/python

# Open a file
fo = open("foo.txt", "rw+")
print "Name of the file: ", fo.name

# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line

line = fo.readline()
print "Read Line: %s" % (line)

# Get the current position of the file.
pos = fo.tell()
print "Current Position: %d" % (pos)

# Close opend file
fo.close()

当我们运行上面的程序,它会产生以下结果:

Name of the file: foo.txt
Read Line: This is 1st line

Current Position: 18

Python 相关文章推荐
python删除列表中重复记录的方法
Apr 28 Python
python设置值及NaN值处理方法
Jul 03 Python
Python使用try except处理程序异常的三种常用方法分析
Sep 05 Python
详解python运行三种方式
May 13 Python
python opencv minAreaRect 生成最小外接矩形的方法
Jul 01 Python
Django 中自定义 Admin 样式与功能的实现方法
Jul 04 Python
Python数据类型之列表和元组的方法实例详解
Jul 08 Python
python自动化UI工具发送QQ消息的实例
Aug 27 Python
Python 读取用户指令和格式化打印实现解析
Sep 02 Python
Python实现直播推流效果
Nov 26 Python
Tensorflow 多线程设置方式
Feb 06 Python
pycharm软件实现设置自动保存操作
Jun 08 Python
在Python中操作文件之seek()方法的使用教程
May 24 #Python
简单介绍Python中的readline()方法的使用
May 24 #Python
在Python中操作文件之read()方法的使用教程
May 24 #Python
在Python中使用next()方法操作文件的教程
May 24 #Python
在Python程序中操作文件之isatty()方法的使用教程
May 24 #Python
讲解Python中fileno()方法的使用
May 24 #Python
在Python程序中操作文件之flush()方法的使用教程
May 24 #Python
You might like
php去除重复字的实现代码
2011/09/16 PHP
PHP制作百度词典查词采集器
2015/01/29 PHP
在php和MySql中计算时间差的方法详解
2015/03/27 PHP
PHP SPL标准库之数据结构堆(SplHeap)简单使用实例
2015/05/12 PHP
php支持断点续传、分块下载的类
2016/05/02 PHP
php获取网站根目录物理路径的几种方法(推荐)
2017/03/04 PHP
CI框架(CodeIgniter)操作redis的方法详解
2018/01/25 PHP
基于jquery的仿百度搜索框效果代码
2011/04/11 Javascript
使用Node.js实现一个简单的FastCGI服务器实例
2014/06/09 Javascript
jQuery实现为图片添加镜头放大效果的方法
2015/06/25 Javascript
jQuery在ie6下无法设置select选中的解决方法详解
2016/09/20 Javascript
AngularJS select设置默认值的实现方法
2017/08/25 Javascript
node.js将MongoDB数据同步到MySQL的步骤
2017/12/10 Javascript
angular6的table组件开发的实现示例
2018/12/26 Javascript
Vue中跨域及打包部署到nginx跨域设置方法
2019/08/26 Javascript
layui-table获得当前行的上/下一行数据的例子
2019/09/24 Javascript
nodejs中内置模块fs,path常见的用法说明
2020/11/07 NodeJs
[00:12]DAC SOLO赛卫冕冠军 VG.Paparazi灬展现SOLO技巧
2018/04/06 DOTA
Anaconda2下实现Python2.7和Python3.5的共存方法
2018/06/11 Python
python opencv实现图片旋转矩形分割
2018/07/26 Python
用Python解决x的n次方问题
2019/02/08 Python
kali中python版本的切换方法
2019/07/11 Python
基于TensorFlow中自定义梯度的2种方式
2020/02/04 Python
Python qrcode 生成一个二维码的实例详解
2020/02/12 Python
关于Python 中的时间处理包datetime和arrow的方法详解
2020/03/19 Python
美国最灵活的移动提供商:Tello
2017/07/18 全球购物
群胜软件Java笔试题
2012/09/29 面试题
舞蹈比赛获奖感言
2014/02/04 职场文书
2014年单位植树节活动方案
2014/03/23 职场文书
井冈山红色之旅感想
2014/10/07 职场文书
党的群众路线教育实践活动个人对照检查材料(四风)
2014/11/05 职场文书
劳动纠纷调解协议书格式
2014/11/30 职场文书
公司保洁员岗位职责
2015/02/13 职场文书
首次购房证明
2015/06/19 职场文书
2016年“我们的节日·端午节”活动总结
2016/04/01 职场文书
Python图片处理之图片裁剪教程
2021/05/27 Python