Python學習異常檢測

# -*- coding: utf-8 -*- """ Created on Mon Aug 21 14:11:22 2017 @author: cq """ #python處理異常 try :     2/0 except Exception,e: #其中e爲實例,即錯誤的實況     print(e)           try:     a = 1/0 except Exception,e:
相關文章
相關標籤/搜索