您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何用python的Try finally語句和with語句安全的讀文件的相關知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇如何用python的Try finally語句和with語句安全的讀文件文章都會有所收獲,下面我們一起來看看吧。
Try...finally語句
輸入:
#!/usr/bin/python
# Filename: finally.py
import time
try:
f = open('poem.txt')
while True:
# our usual file-reading idiom
line = f.readline()
if len(line) == 0:
break
print(line, end='')
time.sleep(2)
# To make sure it runs for a while
except KeyboardInterrupt:
print('!! You cancelled the reading from the file.')finally:
f.close()
print('(Cleaning up: Closed the file)')
輸出:
$ python finally.py
Programming is fun
When the work is done
if you wanna make your work also fun:
!! You cancelled the reading from the file.
(Cleaning up: Closed the file)
解釋:
當我們進行文件的操作時,為了保證有異常事件發(fā)生時,我們可以正常的關閉文件,所有我們使用了 try...finally函數(shù)。當有異常時,拋出異常,并且關閉文件操作。
本例中先打開文件操作,然后讀文件,為了延長 try里運行時間,我們加入了sleep(2)停頓兩秒時間,在此期間我們通過強制的 Ctrl C操作來人為的制造中斷,造成異常,進入finally正常的執(zhí)行了文件的關閉操作。
with語句
輸入:
#!/usr/bin/python
# Filename: using_with.py
with open("poem.txt") as f:
for line in f:
print(line, end='')
輸出:
$ python using_with.py
Programming is fun
When the work is done
解釋:
與try...finally語句的功能一樣,with函數(shù)也能夠進行保護文件的正常操作。在遇到異常時,進行文件關閉。
關于“如何用python的Try finally語句和with語句安全的讀文件”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“如何用python的Try finally語句和with語句安全的讀文件”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。