「python try except跳出」的推薦目錄:
- 關於python try except跳出 在 コバにゃんチャンネル Youtube 的最佳解答
- 關於python try except跳出 在 大象中醫 Youtube 的最讚貼文
- 關於python try except跳出 在 大象中醫 Youtube 的精選貼文
- 關於python try except跳出 在 [閒聊] 最近學了try/except/else/finally - 看板Python - 批踢踢實業坊 的評價
- 關於python try except跳出 在 [Python]自學Python 100 天,錯誤處理(異常)以及debug 的評價
- 關於python try except跳出 在 PyPtt/test_PyPtt.py at master - GitHub 的評價
- 關於python try except跳出 在 PyPtt/test_PyPtt.py at master - GitHub 的評價
python try except跳出 在 大象中醫 Youtube 的最讚貼文
python try except跳出 在 大象中醫 Youtube 的精選貼文
python try except跳出 在 [Python]自學Python 100 天,錯誤處理(異常)以及debug 的推薦與評價
搭配try…except 進行錯誤處理; Python debugger - pdb; 參考連結 ... 而本篇將會介紹Python 中各種錯誤,這樣下次跳出錯誤的時候,就可以從Python ... ... <看更多>
python try except跳出 在 PyPtt/test_PyPtt.py at master - GitHub 的推薦與評價
except : log('沒通過: 跳出其他例外'). assert False. try: log('===亂塞log_level===') ... ('Python', 1, None, False, '總算可以來想想板的走向了..XD'),. ... <看更多>
python try except跳出 在 [閒聊] 最近學了try/except/else/finally - 看板Python - 批踢踢實業坊 的推薦與評價
大家都知道try...except,我也一直只粗淺用了簡單的應用。
最近學了else finally,就做了點小實驗,有點出乎意料的結果,
可能python一開始就是這樣定義,而我一直沒注意到。
我先寫了簡單的:
def trytry():
try:
print 100 / 0
print "no exception"
except:
print "exception"
else:
print "else"
finally:
print "finally"
print "normal return"
return 0
跑出來的結果,大家也猜得出來,是
exception
finally
normal return
0
接下來,我在每個部分加上了return
def trytry():
try:
print 100 / 0
print "no exception"
return 1
except:
print "exception"
return 2
else:
print "else"
return 3
finally:
print "finally"
return 4
print "normal return"
return 0
這回跑出來的結果是
exception
finally
4
這也是預期中的結果。
接下來,我將finally裡的return拿掉
def trytry():
try:
print 100 / 0
print "no exception"
return 1
except:
print "exception" # point 1
return 2 # point 2
else:
print "else"
return 3
finally:
print "finally" # point 3
print "normal return"
return 0
這回有點意外了,結果是這樣:
exception
finally
2
從output可以看到,執行順序是先跑了 print "exception"
原本應該在這時候return,但它是先到finally跑了 print "finally"
再回到except區塊裡的return 2,也就是
point 1 -> point 3 -> point 2
如果是執行else的部分也是一樣,先跑一趟finally再return
想想雖然是合理,我還是對這種順序不是很習慣,也只有記著去習慣它了。
--
看了神鵰俠侶,就應該知道年齡不是問題;
看了斷背山後,就應該知道性別不是問題;
看了金剛後,就應該明白是不是人也不是問題;
看了倩女幽魂以後,更要知道活不活著都不是問題……
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 60.251.79.158
※ 文章網址: https://www.ptt.cc/bbs/Python/M.1463989056.A.E6E.html
... <看更多>