以下程序的输出结果是?( )
x = 2 y = 0 try: z = x / y print(z) except ZeroDivisionError: print('error')
z
2.0
error
没有输出