Python檔案isatty()
方法如果檔案連線(與終端裝置關聯)到tty(類似)裝置則返回True
,否則為false
。
語法
以下是isatty()
方法的語法 -
fileObject.isatty()
引數
返回值
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