当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。