Python os.ctermid()
Python中的os.ctermid()方法用于获取与进程的控制终端对应的文件名。
语法:os.ctermid()
参数:不需要
返回类型:该方法返回一个字符串值,表示与进程的控制终端相对应的文件名。
示例1
使用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