摘要: 每日一句:生活中没有理想的人,是可怜的人。 # 异常 # 报错 # 处理ZeroDivisionError # print(5/0) # 会报错 division by zero # 使用try-except代码块 处理异常 try: print(5/0) except ZeroDivisionEr 阅读全文
posted @ 2020-04-19 23:21 过气诗人 阅读(159) 评论(0) 推荐(0)