第26375题
执行给定的Python代码后输出的结果是?
def func(a, *, b):
    print("{},{}".format(a, b))
func(1, b=2)
A

1,2

B

2,1

C

抛出异常

D

None

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