执⾏下⾯Python代码时 ,哪条调⽤会报错? ( )
def func(a, *, b, c):
pass
func(1, b=2, c=3)
func(1, 2, c=3)
func(a=1, b=2, c=3)
func(1, c=3, b=2)