Python os.close() 方法 Python os.chdir() 方法 Python os.closerange() 方法 Python os.close() 方法 #!/usr/bin/python import os, sys # Open a file fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT ) # Write one string os.write(fd, "This is test") # Close opened file os.close( fd ) print "Closed the file successfully!!" Python os.chdir() 方法 Python os.closerange() 方法