在Python中操作文件之read()方法的使用教程
作者:goldensun 时间:2021-10-28 19:23:46
read()方法读取文件size个字节大小。如果读取命中获得EOF大小字节之前,那么它只能读取可用的字节。
语法
以下是read()方法的语法:
fileObject.read( size );
参数
size -- 这是可以从文件中读取的字节数。
返回值
此方法返回读取字符串中的字节数。
例子
下面的例子显示了read()方法的使用。
#!/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.read(10)
print "Read Line: %s" % (line)
# Close opend file
fo.close()
当我们运行上面的程序,它会产生以下结果:
Name of the file: foo.txt
Read Line: This is 1s
标签:Python
0
投稿
猜你喜欢
如何利用python实现列表嵌套字典取值
2023-07-08 02:16:50
Python利用逻辑回归分类实现模板
2023-11-14 07:02:05
Python实现给文件添加内容及得到文件信息的方法
2022-01-04 09:22:20
python项目报错:bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requests
2022-07-17 05:39:02
pandas.DataFrame 根据条件新建列并赋值的方法
2022-09-06 05:51:05
python获取交互式ssh shell的方法
2021-11-25 13:15:21
Div+CSS+JS树型菜单,可刷新
2024-04-17 09:52:18
Python pandas RFM模型应用实例详解
2023-10-15 23:27:34
用Python实现命令行闹钟脚本实例
2023-01-19 12:57:09
Python web如何在IIS发布应用过程解析
2022-10-17 16:02:51
server application error--IIS故障
2009-06-11 12:50:00
使用Go实现TLS服务器和客户端的示例
2024-04-26 17:18:47
Python dict的常用方法示例代码
2023-05-17 09:58:15
Python程序设计入门(1)基本语法简介
2023-09-12 05:03:31
Python使用pyexecjs代码案例解析
2021-11-13 13:06:43
Vue3响应式对象是如何实现的(2)
2024-05-09 15:10:01
Python中字符串的常见操作技巧总结
2021-06-26 18:35:45
Python利用Gradio与EasyOCR构建在线识别文本的Web应用
2023-05-31 09:35:57
数据库Oracle数据的异地的自动备份
2010-07-27 13:28:00
Python读取txt文件数据的方法(用于接口自动化参数化数据)
2023-12-28 03:21:52