Python3 os.ttyname()方法

2019-10-16 23:09:26
ttyname() 方法返回一個字串,它指定與fd有關終端裝置。如果 fd 沒有與終端裝置相關聯,將引發異常。

語法

以下是 ttyname() 方法的語法:
os.ttyname(fd)

引數

  • fd -- 這是在檔案描述符

返回值

該方法返回一個字串,它指定終端裝置。可在類 Unix 系統

範例

下面的範例顯示 ttyname() 方法的使用。
# !/usr/bin/python33

import os, sys

# Showing current directory 
print ("Current working dir :%s" %os.getcwd())

# Changing dir to /dev/tty
fd = os.open("/dev/tty",os.O_RDONLY)

p = os.ttyname(fd)
print ("the terminal device associated is: ")
print p
print ("done!!")

os.close(fd)
print ("Closed the file successfully!!")
當我們執行上面的程式,它會產生以下結果:
Current working dir is :/tmp
the terminal device associated is:
/dev/tty
done!!
Closed the file successfully!!