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

单选题:如下程序段的输出结果是( )。

Luz5年前 (2021-05-10)题库1298
如下程序段的输出结果是( )。
```
def fun(x, *y):
print(y)
fun(10, 20, 30)
```

答案:C