给出下面代码的运行结果:def fun_1(x, y=3):x = x * 10 + yreturn fun_2(x)def fun_2(x):return x / 5fun_1(6, 5)

时间:2022-11-16 22:31:42

相似题目