第18294题 单选
给定Python函数def func(a,b=0,c=0):,下列调用方式错误的是?
def func(a,b=0,c=0):
    pass
A

func(1)

B

func(1,2)

C

func(1, ,3)

D

func(1,2,3)