A. try:9/0 B. try:9/0except:print("除数不能为0") C. try:9/0except Exception as e:print(e) D. try:9/0except ZeroDivisionError as e:print(e)
A. 对 B. 错