博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 示例_带有示例的Python File tell()方法
阅读量:2536 次
发布时间:2019-05-11

本文共 1597 字,大约阅读时间需要 5 分钟。

python 示例

文件tell()方法 (File tell() Method)

tell() method is an inbuilt method in Python, it is used to get the current file position in the file stream.

tell()方法是Python中的内置方法,用于获取文件流中的当前文件位置。

Syntax:

句法:

file_object.tell()

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of this method is <class 'bool'>, it returns an integer value which is the file position in the file stream.

此方法的返回类型为<class'bool'> ,它返回一个整数值,该值是文件流中的文件位置。

Example:

例:

# Python File tell() Method with Example# creating a filemyfile1 = open("hello1.txt", "w")# printing the file positionprint("myfile1.tell(): ", myfile1.tell())# writing the content in the file myfile1.write("Hello! How are you?")# printing the file positionprint("myfile1.tell(): ", myfile1.tell())# writing the content in the file myfile1.write("\nI am good, what about you?")# printing the file positionprint("myfile1.tell(): ", myfile1.tell())# closing the filemyfile1.close()# Opening file in read modemyfile1 = open("hello1.txt", "r")# printing the file positionprint("After opening the file in read mode...")print("myfile1.tell(): ", myfile1.tell())# reading the contentprint("File's content is...")print(myfile1.read())# printing the file positionprint("After reading the file...")print("myfile1.tell(): ", myfile1.tell())# closing the filemyfile1.close()

Output

输出量

myfile1.tell():  0myfile1.tell():  19myfile1.tell():  46After opening the file in read mode...myfile1.tell():  0File's content is...Hello! How are you?I am good, what about you?After reading the file...myfile1.tell():  46

翻译自:

python 示例

转载地址:http://lcvzd.baihongyu.com/

你可能感兴趣的文章
js 右击事件
查看>>
POJ1426:Find The Multiple(算是bfs水题吧,投机取巧过的)
查看>>
今天突然出现了Property IsLocked is not available for Login '[sa]',我太阳,下面有绝招对付它!...
查看>>
django-admin源码解析
查看>>
pc端字体大小自适应几种方法
查看>>
Linux--Linux下安装JDk
查看>>
Github windows客户端简单上手教程
查看>>
前端面试题:高效地随机选取数组中的元素
查看>>
[.NET] 使用 .NET Framework 開發 ActiveX Control
查看>>
Remote IIS Debugging : Debug your ASP.NET Application which is hosted on "Remote IIS Server"
查看>>
iframe 模拟ajax文件上传and formdata ajax 文件上传
查看>>
个人作品需要的报告
查看>>
7 月 2 日
查看>>
那些盒模型在IE6中的BUG们,工程狮的你可曾遇到过?
查看>>
JVM学习笔记四_垃圾收集器与内存分配策略
查看>>
使用Entity Framwork 保存数据时,提示不能在对象中插入重复键,违反了PRIMARY_KEY约束...
查看>>
Mac上制作Centos7系统U盘安装盘
查看>>
VS2013 堆栈溢出调查(0xC00000FD: Stack overflow)
查看>>
Appium脚本(2):元素检测
查看>>
python之OrderedDict类
查看>>