第17155题 单选
下列Python函数定义语句中语法正确的是?
A
def f(c=2,a,b):
B
def f(a,b=2,c):
C
def f(*c,**d,a,b):
D
def f(a,b,*c,**d):