當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.write()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

os.write()Python中的方法用於將字節字符串寫入給定的文件描述符。

文件描述符是一個小整數值,對應於當前進程已打開的文件。它用於執行各種較低級別的I /O操作,例如讀取,寫入,發送等。


注意os.write()方法旨在用於低級操作,並且應應用於由返回的文件描述符os.open()或者os.pipe()方法。

用法: os.write(fd, str) 

參數:
fd:表示目標文件的文件描述符。
str:要寫入文件中的bytes-like對象。

返回類型:此方法返回一個整數值,該值表示實際寫入的字節數。

代碼:使用os.write()方法將字節字符串寫入給定的文件描述符
# Python program to explain os.write() method  
    
# importing os module  
import os 
  
# File path  
path = "/home / ihritik / Documents / GeeksForGeeks.txt"
  
  
# Open the file and get 
# the file descriptor associated 
# with it using os.open() method 
fd = os.open(path, os.O_RDWR) 
  
  
# String to be written 
s = "GeeksForGeeks:A Computer science portal for Geeks."
  
# Convert the string to bytes 
line = str.encode(s) 
  
# Write the bytestring to the file 
# associated with the file 
# descriptor fd and get the number of 
# Bytes actually written 
numBytes = os.write(fd, line) 
  
print("Number of bytes written:", numBytes) 
  
# close the file descriptor 
os.close(fd)
輸出:
Number of bytes written:51


相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.write() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。