python打开和关闭文件的代码

如下的资料是关于python打开和关闭文件的内容。

#!/usr/bin/python

# Open a file

fo = open("foo.txt", "wb")

print "Name of the file: ", fo.name

# Close opend file

fo.close()

你可能感兴趣的:(python打开和关闭文件的代码)