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


Python os.device_encoding()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

os.device_encoding()如果设备连接到终端,则使用Python中的method方法获取与指定文件描述符关联的设备的编码。如果指定的文件描述符未连接到终端,则此方法返回None。

注意:此方法仅在某些UNIX上可用。


用法: os.device_encoding(fd) 

参数:
fd:一个文件描述符,将查询其设备编码。

返回类型:如果该方法连接到终端,则返回一个字符串值,该字符串值表示与指定文件描述符关联的设备的编码,否则返回None。

代码:使用os.device_encoding()方法获取与给定文件描述符关联的设备的编码
# Python program to explain os.device_encoding() method   
  
# importing os module  
import os 
  
# File path 
path = "/home/ihritik/Desktop/file.txt"
  
# Open the file and get  
# the file descriptor associated 
# with it using os.open() method  
fd = os.open(path, os.O_RDWR | os.O_CREAT) 
  
  
# Check if file descriptor fd 
# is open and connected 
# to a terminal using os.isatty() method 
print("Connected to a terminal:", os.isatty(fd)) 
  
  
# Print the encoding of 
# the device associated with 
# the file descriptor fd 
# using os.device_encoding() method 
print("Device encoding:", os.device_encoding(fd))  
  
  
# Open a new pseudo-terminal pair 
# using os.openpty() method 
# It will return master and slave  
# file descriptor for  
# pty ( pseudo terminal device) and 
# tty ( native terminal device) respectively 
master, slave = os.openpty() 
  
# Check if file descriptor master 
# is open and connected 
# to a terminal using os.isatty() method 
print("Connected to a terminal:", os.isatty(master)) 
  
  
# Print the encoding of 
# the device associated with 
# the file descriptor master 
# using os.device_encoding() method 
print("Device encoding:", os.device_encoding(master)) 
输出:
Connected to a terminal:False
Device encoding:None
Connected to a terminal:True
Device encoding:UTF-8


相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.device_encoding() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。