已知函数定义def func(**p):return sum(p.values()),那么表达式func(x=1, y=2, z

已知函数定义def func(**p):return sum(p.values()),那么表达式func(x=1, y=2, z=3)的值为。

6