有如下Python程序段:
x,y=12,5 if x % y==0: z=x/y print(x,"/",y,"=",z) else: z=y*x print(x,"*",y,"=",z)
程序段执行后,输出的结果为?( )
x/y=2.4
x*y=60
12/5=2.4
12*5=60