Python 文件 isatty()方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程