# coding=utf-8
# Author: RyAn Bi
def test(x,y,z):
print(x)
print(y)
print(z)
test(y=2,z =3,x=1) #形参与顺序无关
test(1,2,3) #与形参一一对应
test(3,z=2,y=6) #制定参数一定不能放在位置参数前面
# coding=utf-8
# Author: RyAn Bi
def test(x,y,z):
print(x)
print(y)
print(z)
test(y=2,z =3,x=1) #形参与顺序无关
test(1,2,3) #与形参一一对应
test(3,z=2,y=6) #制定参数一定不能放在位置参数前面
转载于:https://www.cnblogs.com/bbgoal/p/10373463.html