运行如下代码,输出结果为5。( ) x = 1 y = 5 def fun(): global x x = 4 y = 3 if y > x: return y else: return x print(fun())
对
错