Python3 file.isatty()方法

2019-10-16 23:09:38
如果檔案連線(與終端裝置相關聯)至tty(類似的)裝置,isatty()方法返回True,否則返回False。

語法

以下是 isatty()方法的語法 -
fileObject.isatty()

引數

  • NA

返回值

如果檔案連線(與終端裝置相關聯)至tty(類似的)裝置,此方法返回True,否則返回False。

範例

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

# Open a file
fo = open("foo.txt", "wb")
print ("Name of the file: ", fo.name)

ret = fo.isatty()
print ("Return value : ", ret)

# Close opend file
fo.close()
當我們執行上面的程式,會產生以下結果 -
Name of the file:  foo.txt
Return value :  False