摘要: 异常处理的基本格式 try: v = [] v[11111] # IndexError except ValueError as e: pass except IndexError as e: pass except Exception as e: print(e) # e是Exception类的对 阅读全文
posted @ 2019-07-21 15:21 CongShao's 阅读(94) 评论(0) 推荐(0) 编辑