试题详情

写出下面代码的运行结果 ( )。 def Sum(a, b=3, c=5): print(a,b,c) Sum(a=8, c=2)

A8 2

B8,2

C8 3 2

D 8,3,2