Python os.ctermid() - 获取与进程的控制终端对应的文件名

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程