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