函数fun的定义如下,调用该函数的语句错误的是?( )
def fun(x, y, z=3):
print(x, y, z)
fun(1, 2, 3)
fun(1, 2)
fun(y=2, x=1)
fun(1, y=2, 3)