Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.read()
Python中的方法用於從與給定文件描述符關聯的文件中讀取最多n個字節。
如果在從給定文件描述符讀取字節時到達文件末尾,os.read()
方法將為所有要讀取的剩餘字節返回一個空字節對象。
文件描述符是一個小整數值,對應於當前進程已打開的文件。它用於執行各種較低級別的I /O操作,例如讀取,寫入,發送等。
注意:os.read()
方法旨在用於低級操作,並且應應用於由返回的文件描述符os.open()
或者os.pipe()
方法。
用法: os.read(fd, n)
參數:
fd:表示要讀取文件的文件描述符。
n:一個整數值,表示要從與給定文件描述符fd相關的文件中讀取的字節數。
返回類型:此方法返回一個字節字符串,該字符串表示從與文件描述符fd相關聯的文件讀取的字節。
將以下文本視為名為Python_intro.txt的文件的內容。
Python is a widely used general-purpose, high level programming language. It was initially designed by Guido van Rossum in 1991 and developed by Python Software Foundation. It was mainly developed for emphasis on code readability, and its syntax allows programmers to express concepts in fewer lines of code. Python is a programming language that lets you work quickly and integrate systems more efficiently.
# Python program to explain os.read() method
# importing os module
import os
# File path
path = "/home / ihritik / Documents / Python_intro.txt"
# Open the file and get
# the file descriptor associated
# with it using os.open() method
fd = os.open(path, os.O_RDONLY)
# Number of bytes to be read
n = 50
# Read at most n bytes
# from file descriptor fd
# using os.read() method
readBytes = os.read(fd, n)
# Print the bytes read
print(readBytes)
# close the file descriptor
os.close(fd)
b'Python is a widely used general-purpose, high leve'
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.read() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。