Python: Apply方法的应用

2023-01-31 05:01:57 python apply 方法

刚才看python学习书籍,发现关于apply方法有如下介绍:


 使用元组或字典中的参数调用函数

Python允许你实时地创建函数参数列表. 只要把所有的参数放入一个元组中, 然后通过内建的 apply 函数调用函数. 如 Example 1-1.

1.2.1.1. Example 1-1. 使用 apply 函数

File: builtin-apply-example-1.py

def function(a, b):
    print a, b

apply(function, ("whither", "canada?"))
apply(function, (1, 2 + 3))

看完之后我查询python帮助文档,发现对于aplly方法做了如下解释:

apply

Removes usage of apply(). For example apply(function, *args, **kwargs) is converted to function(*args, **kwargs).

意思说, 取消了appy方法的使用,例如,用function(* args, **kwargs) 代替了方法appy

所以上文例子如下面写:

>>> def add(a, b):
	print(a,b)

	
>>> add('I am', ' albertshao')
I am  albertshao




相关文章