Python os.close() 方法
python os.close() 方法
os.close() 方法用于關(guān)閉指定的文件描述符 fd。
語法
close()方法語法格式如下:
os.close(fd);
參數(shù)
- fd -- 文件描述符。
- fd -- 文件描述符。
返回值
該方法沒有返回值。
實(shí)例
以下實(shí)例演示了 close() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 打開文件 fd = os.open( "foo.txt", os.o_rdwr|os.o_creat ) # 寫入字符串 os.write(fd, "this is test") # 關(guān)閉文件 os.close( fd ) print "關(guān)閉文件成功!!"
執(zhí)行以上程序輸出結(jié)果為:
關(guān)閉文件成功!!
相關(guān)文章
- Python 簡介
- Python while 循環(huán)語句
- Python 函數(shù)
- Python 正則表達(dá)式
- Python IDE
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python 棧
- Python Deque
- Python 高級鏈表
- Python 二叉樹
- Python 搜索樹
- Python 算法設(shè)計(jì)
- Python 算法理由
- Python3 數(shù)字(Number)
- Python3 字符串(String)
- Python3 輸入和輸出
- Python3 文件讀寫
- Python3 OS 文件/目錄方法
- Python3 命名空間
- Python3 JSON 解析