os.write() 方法用于写入字符串到文件描述符 fd 中. 返回实际写入的字符串长度。
语法格式:
os.write(fd, str)
fd -- 文件描述符
str -- 写入的字符串。
举个例子:
#!/usr/bin/python # -*- coding: UTF-8 -*- import os, sys # 打开文件 fd = os.open("f1.txt",os.O_RDWR|os.O_CREAT) # 写入字符串 ret = os.write(fd,"This is runoob.com site") # 输入返回值 print "写入的位数为: " print ret print "写入成功" # 关闭文件 os.close(fd) print "关闭文件成功!!"
结果:
写入的位数为: 23 写入成功 关闭文件成功!!