摘要: 直接上代码: def fun3(): try: x=[1,2,3] raise return x.append(6) except Exception: x.append(4) return x finally: x.append(5) print("fun3 finally") print(fun 阅读全文
posted @ 2020-10-28 03:05 luckytian 阅读(1356) 评论(0) 推荐(0)