小明设计了一个计算矩形体积的函数,以下调用函数的四个选项中,参数传递错误的是?( )
def vol(length,width,height): v = length * width * height return v
s = vol(3,4,7)
print(s)
s = vol(3, 7,width=4)
s = vol(3,height=7,width=4)
s = vol(3, width=4,height=7)