Python 文件 isatty()方法
isatty()方法返回True,如果文件连接(与终端设备关联)到一个tty(类似)设备,否则返回False。
语法
isatty()方法的语法如下所示−
fileObject.isatty()
参数
无
返回值
如果文件已连接(与终端设备关联),则返回true,否则返回false。
示例
以下示例显示了isatty()方法的用法:
# Open a file
fo = open("foo.txt", "wb")
print ("Name of the file: ", fo.name)
ret = fo.isatty()
print ("Return value : ", ret)
# Close the opened file
fo.close()
当我们运行上面的程序时,它产生以下的输出。
Name of the file: foo.txt
Return value : False