Python| os.openpty() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.openpty()
方法用于打开一个新的伪终端对。此方法分别为 pty 和 tty 返回一对文件描述符( master和slave )。返回的文件描述符是不可继承的。
顾名思义,伪终端是一种具有物理终端功能的设备,但实际上并不是一个。
注意:此方法仅适用于某些版本的 UNIX。
Syntax: os.openpty()
Parameter: No parameter is required
Return Type: This method returns a pair of file descriptors (master, slave) for the pty and the tty, respectively.
代码: os.openpty() 方法的使用
# Python program to explain os.openpty() method
# importing os module
import os
# open new pseudo-terminal pair
# using os.openpty() method
master, slave = os.openpty()
# Get the terminal device
# name associated with
# file descriptor master
name = os.ttyname(master)
print(name)
# Get the terminal device
# name associated with
# file descriptor slave
name = os.ttyname(slave)
print(name)
输出:
/dev/ptmx
/dev/pts/2