赞题库-背景图
单项选择题

已知函数定义 def func(**p):print(p),那么表达式 func(1,2,3)的输出为__
A、(1,2,3)
B、[1,2,3]
C、{'x': 1, 'y': 2, 'z': 3}
D、123