Python3 os.write() 方法

概述

os.write() 方法用于写入字符串到文件描述符 fd 中. 返回实际写入的字符串长度。

在Unix中有效。

语法

write()方法语法格式如下:

  1. os.write(fd, str)

参数

  • fd — 文件描述符。

  • str — 写入的字符串。

返回值

该方法返回写入的实际位数。

实例

以下实例演示了 write() 方法的使用:

  1. #!/usr/bin/python3
  2.  
  3. import os, sys
  4.  
  5. # 打开文件
  6. fd = os.open("f1.txt",os.O_RDWR|os.O_CREAT)
  7.  
  8. # 写入字符串
  9. str = "This is baidu.com site"
  10. ret = os.write(fd,bytes(str, 'UTF-8'))
  11.  
  12. # 输入返回值
  13. print ("写入的位数为: ")
  14. print (ret)
  15.  
  16. print ("写入成功")
  17.  
  18. # 关闭文件
  19. os.close(fd)
  20. print ("关闭文件成功!!")

执行以上程序输出结果为:

  1. 写入的位数为:
  2. 23
  3. 写入成功
  4. 关闭文件成功!!