Python 3 - 文件 isatty() 方法

  • 描述

    方法isatty()如果文件连接(与终端设备关联)到 tty(类似)设备,则返回 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