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