对于如下自定义的函数:
def myfunc(a,b,c)
return a+b+c
以下调用该函数的python语句中,能正确执行的是?( )
myfunc(1,2)
myfunc(a=3,2,1)
myfunc(3,b=2,1)
myfunc(3,2,c=1)