Python3 os.write() 方法
概述
os.write() 方法用于寫入字符串到文件描述符 fd 中. 返回實(shí)際寫入的字符串長(zhǎng)度。
在Unix中有效。
語法
write()方法語法格式如下:
os.write(fd, str)
參數(shù)
-
fd -- 文件描述符。
-
str -- 寫入的字符串。
返回值
該方法返回寫入的實(shí)際位數(shù)。
實(shí)例
以下實(shí)例演示了 write() 方法的使用:
#!/usr/bin/python3 import os, sys # 打開文件 fd = os.open("f1.txt",os.O_RDWR|os.O_CREAT) # 寫入字符串 str = "This is w3cschool.cn site" ret = os.write(fd,bytes(str, 'UTF-8')) # 輸入返回值 print ("寫入的位數(shù)為: ") print (ret) print ("寫入成功") # 關(guān)閉文件 os.close(fd) print ("關(guān)閉文件成功!!")
執(zhí)行以上程序輸出結(jié)果為:
寫入的位數(shù)為: 23 寫入成功 關(guān)閉文件成功!!
更多建議: