Python/ref file isatty

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python File isatty()方法

❮档案方法

检查文件是否已连接到终端设备:

    f = open("demofile.txt", "r")
print(f.isatty())

定义和用法

The isatty() 方法返回 True 如果文件流是交互式的,例如:连接到终端设备。

句法

file.isatty()
  

参数值

没有参数

❮档案方法