Python 3 – 文件写入 write() 方法
描述
方法 write() 会将字符串 str 写入文件中。它没有返回值。由于缓存的原因,在调用 flush() 或 close() 方法之前,该字符串可能并没有实际出现在文件中。
语法
下面是 write() 方法的语法 −
fileObject.write( str )
参数
str − 这是要写入文件中的字符串。
返回值
该方法不返回任何值。
例子
下面是 write() 方法的用法示例。
假设 'foo.txt' 文件包含以下文本:
This is 1st line
This is 2nd line
This is 3rd line
This is 4th line
This is 5th line
#!/usr/bin/python3
# 以读写模式打开文件
fo = open("abc.txt", "r+")
print ("Name of the file: ", fo.name)
str = "This is 6th line"
# 在文件末尾写入一行。
fo.seek(0, 2)
line = fo.write( str )
# 从文件开头读取整个文件。
fo.seek(0,0)
for index in range(6):
line = next(fo)
print ("Line No %d - %s" % (index, line))
# 关闭文件
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