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