Python函数参数是计算机常用的计算机语言,但是在其运行的过程中会有些困难,例如, Python函数参数与命令行参数ython中函数参数的传递是通过赋值来传递的。下面就是关于其的介绍,希望你会有所收获。
函数参数的使用又有俩个方面值得注意:
- >>> def printpa(**a):
- ... print type(a)
- ... print a
- ...
- >>> printpa(a=1,y=2)
- <type 'dict'>
- F(arg1,arg2,...)
- {'a': 1, 'y': 2}
- >>> printpa(a=1)
- <type 'dict'>
- {'a': 1}
- >>> li=[1,2,3,4]
- >>> printpa(b=li)
- <type 'dict'>
- {'b': [1, 2, 3, 4]}
- >>> tu=(1,2,3)
- >>> printpa(b=tu)
- <type 'dict'>
- {'b': (1, 2, 3)}
- >>> printpa(1,2)
- Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
- TypeError: printpa() takes exactly 0 arguments (2 given)
F(arg1,arg2=value2,...)
是最常见的定义方式,一个函数可以定义任意个参数,每个参数间用逗号分割,用这种方式定义的函数在调用的的时候也必须在函数名后的小括号里提供个数相等的值(实际参数),而且顺序必须相同,也就是说在这种调用方式中,形参和实参的个数必须一致,而且必须一一对应,也就是说***个形参对应这***个实参。例如:
- def a(x,y):
- print x,y
调用该Python函数参数,a(1,2)则x取1,y取2,形参与实参相对应,如果a(1)或者a(1,2,3)则会报错。再看下面的例子:
- >>> a=(1,2,3)
- >>> def printpa(a):
- ... print type(a)
- ... print a
- ...
- >>> printpa(a)
- <type 'tuple'>
- (1, 2, 3)
- >>> printpa(range(1,4))
- <type 'list'>
- [1, 2, 3]
- >>> printpa({})
- <type 'dict'>
- {}
- >>> def printpa(a,b,c):
- ... print a,b,c
- ...
- >>> printpa(a)
- Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
- TypeError: printpa() takes exactly 3 arguments (1 given)
- >>> printpa(*a)
- 1 2 3
- >>> a=[1,2,3]
- >>> printpa(*a)
- 1 2 3
- >>> printpa(a)
- Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
- TypeError: printpa() takes exactly 3 arguments (1 given)
- >>> a=[1,2,3,4]
- >>> printpa(*a)
- Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
- TypeError: printpa() takes exactly 3 arguments (4 given)
- >>> printpa(*range(1,4))
- 1 2 3
由上可以看出,如果函数的有多个形参,调用的时候可以传递一个元组或列表来作实参,但是元组或列表中元素的个数必须与形参的个数相同。上述文章是对 Python函数参数与命令行参数,ython中函数参数的传递是通过赋值传递的基本应用介绍。
【编辑推荐】