首页->Python期末
(A)def myfunc(*args):
(B) def myfunc(arg1=1):
(C) def myfunc(*args, a=1):
(D) def myfunc(a=1, **args):