當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.ctermid()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

os.ctermid()Python中的方法用於獲取與進程控製終端相對應的文件名。

用法: os.ctermid() 

參數:不需要

返回類型:此方法返回一個字符串值,該字符串值表示與該過程的控製終端相對應的文件名。

代碼:使用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


相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.ctermid() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。