<languages />
❮档案方法
检查文件是否已连接到终端设备:
f = open("demofile.txt", "r") print(f.isatty())
The isatty() 方法返回 True 如果文件流是交互式的,例如:连接到终端设备。
isatty()
True
file.isatty()
没有参数