Python file isatty() 方法 Python 文件File fileno() 方法 Python os.access() 方法 Python file isatty() 方法 #!/usr/bin/python # Open a file fo = open("foo.txt", "wb") print "Name of the file: ", fo.name ret = fo.isatty() print "Return value : ", ret # Close opened file fo.close() Python 文件File fileno() 方法 Python os.access() 方法