Python write写文件教程
在
write写文件详解
语法
n = file.write(string)
参数
参数
描述
n
写入成功的字节数。
file
文件对象。
string
要写入的文件内容。
返回值
返回写入成功的字节数。
说明
file 表示已经打开的文件对象,string 表示要写入文件的
在使用 write() 向文件中写入数据,需保证使用 open() 函数是以 r+、w、w+、a 或 a+ 的模式打开文件,否则执行 write() 函数会抛出 io.UnsupportedOperation 错误。
案例
使用write函数写文件
使用 write 函数向已打开的文件写入内容
print("嗨客网(www.haicoder.net)")
file = open("C:/haicoder.txt", "w")
n = file.write("Hello HaiCoder")
print("Write =", n)
file.close()
程序运行后,控制台输出如下:
我们使用 open 函数以写模式打开文件,接着使用 open 函数返回的文件对象调用 write 函数写文件,并返回