一.python中的函数参数形式 python中函数一般有四种表现形式: 1.def function(arg1, arg2, arg3...) 这种是python中最常见的一中函数参数定义形式,函数参数之间用逗号分隔,调用的时候的参数必须与定义的时候相同,且参数顺序与形参一一对应. def myfunction(a, b): print a,b #正确调用 myfunction(3,7) #错误调用 myfunction(3) myfunction(2, 3, 5) 2.def functio