Python os.write() 方法
python os.write() 方法
os.write() 方法用于寫入字符串到文件描述符 fd 中. 返回實際寫入的字符串長度。
在unix中有效。
語法
write()方法語法格式如下:
os.write(fd, str)
參數
- fd -- 文件描述符。
- str -- 寫入的字符串。
返回值
該方法返回寫入的實際位數。
實例
以下實例演示了 write() 方法的使用:
#!/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 寫入成功 關閉文件成功!!