第17176题
运行给定Python函数程序的输出结果是?
def fun(x, y=5):
    return x * y
a = fun(10, 10)
print(a)
A

100

B

50

C

10

D

运行出错

提交0次 正确率0.00%
答案解析