在python中使用close函数关闭文件的方法
close函数是用于关闭一个已打开的文件。
close()函数语法:
fileObject.close(); #fileObject为文件对象
close()函数使用方法:
# 打开文件fo = open("runoob.txt", "wb")print "文件名为: ", fo.name# 关闭文件fo.close()
# 打开文件
fo = open("runoob.txt", "wb")
print "文件名为: ", fo.name
# 关闭文件
fo.close()