pythonopenasfile
發布時間: 2025-01-11 01:17:06
『壹』 python里的with open(file name) as file obj是什麼意思
就是打開一個文件並聲明變數file obj 接收打開後的文件對象,同時with語句塊會在程序結束時候自動關閉打開的文件句柄,不會造成內存存泄露之後的問題
大概等效於
try:
file_obj = open(file_name)
#with裡面你寫的代碼
except Exception:
raise Exception
finally:
if file_obj :
file_obj.close()
熱點內容