-->
当前位置:首页 > 题库

已知有如下定义:

Luz5年前 (2021-05-10)题库1890
已知有如下定义: ``` def fun(x, y, z=2): print(x + y * z) ``` 则,当调用函数fun(1, 10)时,输出结果为21。

答案:TRUE