试题详情

def Sum(a, b=3, c=5): print(a,b,c) Sum(8) 运行结果是:( )。

A8

B 8 3 5

C8,3,5

D0 3 5