Python File close() 方法
python file close() 方法
close() 方法用于關(guān)閉一個已打開的文件。關(guān)閉后的文件不能再進行讀寫操作, 否則會觸發(fā) valueerror 錯誤。 close() 方法允許調(diào)用多次。
當(dāng) file 對象,被引用到操作另外一個文件時,python 會自動關(guān)閉之前的 file 對象。 使用 close() 方法關(guān)閉文件是一個好的習(xí)慣。
語法
close() 方法語法如下:
fileobject.close();
參數(shù)
無
返回值
該方法沒有返回值。
實例
以下實例演示了 close() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- # 打開文件 fo = open("codebaoku.txt", "wb") print "文件名為: ", fo.name # 關(guān)閉文件 fo.close()
以上實例輸出結(jié)果為:
文件名為: codebaoku.txt
相關(guān)文章
- Python 變量類型
- Python 循環(huán)語句
- Python for 循環(huán)語句
- Python 元組
- Python 異常處理
- Python 操作 MySQL 數(shù)據(jù)庫
- Python JSON
- Python 列表
- Python 詞典
- Python 集合
- Python 二叉樹
- Python 分而治之
- Python 排序算法
- Python3 教程
- Python3 環(huán)境搭建
- Python3 列表(List)
- Python3 if else 語句
- Python3 for while 循環(huán)語句
- Python3 作用域
- Python3 MySQL 數(shù)據(jù)庫連接 - PyMySQL 驅(qū)動