执行下面Python代码后,会发生什么?( )
try: raise ValueError except Exception: print("A") except ValueError: print("B")
打印"A"
打印"B"
同时打印"A"和"B"
报错