Python| os.ctermid() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.ctermid()
方法用于获取进程控制终端对应的文件名。
Syntax: os.ctermid()
Parameter: Not required
Return Type: This method returns a string value denoting the filename corresponding to the controlling terminal of the process.
代码: os.ctermid() 方法的使用
# Python program to explain os.ctermid() method
# importing os module
import os
# Get the filename corresponding
# to the controlling terminal
# of the process.
filename = os.ctermid()
# Print the filename corresponding
# to the controlling terminal
# of the process.
print(filename)
输出:
/dev/tty