1、#位置形参,必须一一对应,缺一不行,多一也不行
def test(x,y,z):#位置形参 print(x) print(y) print(z) test(1,2,3)
2、
函数学习
原文:https://www.cnblogs.com/forhowcar/p/12236068.html