try: print("Hello") print(1 / 0) except ZeroDivisionError: print("0不能做分母") finally: print("这条代码运行是必须的") 结果: >>> Hello 0不能做分母 这条代码运行是必须的 >>>
0