1. 程式人生 > >python os.open()和open()

python os.open()和open()

os.open()返回為開啟檔案的描述符

f = os.open("test2.py", os.O_NONBLOCK)
print f # 結果為3

 

open()返回為檔案物件

f = open("test.log", "wb")
print f # 結果為<open file 'test.log', mode 'wb' at 0x0000000002835030>

詳細介紹open():http://www.runoob.com/python/python-func-open.html