第11505题 单选
给定Python自定义函数myfun(x,y,z),下列哪项是该函数的正确调用语句?
def myfun(x,y,z):
    return x+y*z
A

myfun(1,2)

B

myfun(1,2,3)

C

myfun(x=1,2,3)

D

myfun(1,y=2,3)