def test(x,y):
print (x)
print (y)
#print test(3,5)#与形参一一对应
#print test(y=2,x=1)#与形参顺序无关
print test(2,y=3)#正确
print test(2,x=3)#报错
def test(x,y):
print (x)
print (y)
#print test(3,5)#与形参一一对应
#print test(y=2,x=1)#与形参顺序无关
print test(2,y=3)#正确
print test(2,x=3)#报错