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