python-try-except:pass的用法
1.為了跳過for迴圈裡的某次迴圈,以下程式碼當某次迴圈發生錯誤時,執行except程式碼塊,continue跳過該次迴圈:
for i in range(x):
try:
i += 1
print(i)
except:
continue
- 還可以寫成這樣,遇到錯誤執行except程式碼塊,pass忽略錯誤並繼續往下執行,略有不同的就是無論程式錯誤與否都會執行到continue這一行程式碼:
for i in range(x):
try:
i += 1
print(i)
except:
pass
continue
.3.還有一種用法就是遇到錯誤時直接中斷整個for迴圈:
try:
for i in range(x):
i += 1
print(i)
except:
pass
總之try+except就是當try的從屬程式碼執行遇到錯誤時,中斷try從屬程式碼並執行except的從屬語句
相關文章
- Battle Pass的本質BAT
- llvm passLVM
- nginx的pass_proxy遇到的坑Nginx
- nginx的反向代理proxy_pass指令Nginx
- jquery pass parameter to ajax callbackjQuery
- http://pass.com.ru/HTTP
- SAP ABAP 方法呼叫裡傳值(Pass Value)和傳引用(Pass Reference)的區別試讀版
- NTLM協議與Pass the Hash的愛情協議
- 7、域滲透——Pass The Hash的實現
- 哪位牛人能解釋一下one-pass sort,multi-pass sort具體的實現方法。
- LLVM PASS PWN 總結LVM
- ORACLE 11G OCM PASSOracle
- Nginx的proxy_pass簡單使用記錄Nginx
- Nginx中proxy_pass的斜槓(/)問題Nginx
- nginx配置proxy_pass後斜槓的訪問Nginx
- docker – nginx – proxy_pass + proxy_redirectDockerNginx
- llvm -O 經歷過那些passLVM
- nginx proxy_pass 和 proxy_redirectNginx
- Nginx引數proxy_pass細說Nginx
- Battle Pass的獎勵機制是如開啟玩家腰包的?BAT
- 雜湊傳遞攻擊利用(Pass The Hash)
- 深入淺出VACUUM核心原理(中): index by passIndex
- Sallen-Key Active Butterworth Low Pass Filter CalculatorFilter
- nginx location 和proxy_pass 代理說明Nginx
- Nginx之location中反向代理proxy_pass配置Nginx
- Nginx rewrite 規則 與 proxy_pass 實現Nginx
- Nginx伺服器的反向代理proxy_pass配置方法講解Nginx伺服器
- Qdrant用法;Qdrant在langchain裡的用法LangChain
- Battle Pass:既想壓榨你的錢包,更想擠佔你的時間BAT
- SQL AS 的用法SQL
- SUBMIT 的用法MIT
- indexOf()的用法Index
- Promise的用法Promise
- PHPdefine()的用法PHP
- SqlParameter的用法SQL
- Tcpdump 的用法TCP
- Javascript 的 this 用法JavaScript
- top的用法