多项选择题

以下使用try-except语句中,运行打印出e的结果的代码是:()

A.name =’hello’num =5try:print(name+num)except Exception as e:print(e)
B.name =’hello’num =5try:print(num+name)except Exception as e:print(e)
C.name =’hello’num =5try:print(name*num)except Exception as e:print(e)
D.name =’hello’num =5try:print(num/name)except Exception as e:print(e)

微信扫码免费搜题