Python中操作文件之write()方法的使用教程
作者:goldensun 时间:2023-12-29 06:06:13
write()方法把字符串str写入文件。没有返回值。由于缓冲,字符串可能不实际显示文件,直到flush()或close()方法被调用。
语法
以下是write()方法的语法:
fileObject.write( str )
参数
str -- 这是要被写入的文件中的字符串。
返回值
此方法不返回任何值。
例子
下面的例子显示write()方法的使用。
#!/usr/bin/python
# Open a file in write mode
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
str = "This is 6th line"
# Write a line at the end of the file.
fo.seek(0, 2)
line = fo.write( str )
# Now read complete file from beginning.
fo.seek(0,0)
for index in range(6):
line = fo.next()
print "Line No %d - %s" % (index, line)
# Close opend file
fo.close()
当我们运行上面的程序,它会产生以下结果:
Name of the file: foo.txt
Line No 0 - This is 1st line
Line No 1 - This is 2nd line
Line No 2 - This is 3rd line
Line No 3 - This is 4th line
Line No 4 - This is 5th line
Line No 5 - This is 6th line
标签:Python,write
0
投稿
猜你喜欢
JavaScript使用Range调色及透明度实例
2024-04-16 10:36:25
Python pygame实现中国象棋单机版源码
2021-04-15 05:34:16
bootstrap-table实现表头固定以及列固定的方法示例
2024-04-29 13:13:19
CSS布局之浮动(三)自适应
2008-08-19 12:49:00
无法在Web服务器上启动调试。未将项目配置为进行调试
2024-03-21 03:11:13
全面解析Bootstrap表单使用方法(表单样式)
2024-05-10 14:08:28
ASP.NET Core中的静态文件
2024-05-21 10:13:23
Bootstrap实现渐变顶部固定自适应导航栏
2023-08-23 00:52:40
使用keras框架cnn+ctc_loss识别不定长字符图片操作
2022-05-13 22:15:42
Navicat配置mysql数据库用户权限问题
2024-01-24 13:06:21
pytorch加载语音类自定义数据集的方法教程
2021-07-15 20:38:07
Oracle 常用的SQL语句
2024-01-17 08:55:26
python 重定向获取真实url的方法
2022-10-25 03:24:46
Python学习之面向对象编程详解
2023-10-12 18:48:46
python 获取文件列表(或是目录例表)
2021-06-27 20:14:24
Git远程仓库配置SSH的实现(以github为例)
2023-10-21 18:16:00
瀑布流布局浅析
2011-09-16 20:18:09
python读取nc数据并绘图的方法实例
2023-09-16 10:08:19
5种禁用html页面的缓存方法
2007-09-30 12:12:00
Python 26进制计算实现方法
2022-12-09 03:26:36