Python os.write() 方法
Python3 os.write() 方法用于写入字符串到文件描述符 fd 中. 返回实际写入的字符串长度。在Unix中有效。
Python os.write() 语法
write()方法语法格式如下:
os.write(fd, str)
Python os.write() 参数
- fd – 文件描述符。
- str -写入的字符串。
Python os.write() 返回值
该方法返回写入的实际位数。
Python os.write() 实例1
以下实例演示了 write() 方法的使用:
#!/usr/bin/python3
import os, sys
# 打开文件
fd = os.open("apidemos.txt",os.O_RDWR|os.O_CREAT)
# 写入字符串
str = "This is apidemos.com site"
ret = os.write(fd,bytes(str, 'UTF-8'))
# 输入返回值
print ("The number of bits written in is: ")
print (ret)
print ("Write success.")
# 关闭文件
os.close(fd)
print ("Close file successfully!!!")
执行以上程序输出结果为: