检查文件是否已连接到终端设备:
f = open("demofile.txt", "r")print(f.isatty())
f = open("demofile.txt", "r")
print(f.isatty())
如果文件流是交互式的,则 isatty() 方法返回 True,例如:已连接到终端设备。
isatty()
file.isatty()
无参数。