简明 Python 教程   第15章 更多Python的内容   上一页 在函数中接收元组和列表 注解

原文是:

当要使函数接收元组或字典形式的参数的时候,有一种特殊的方法,它分别使用***前缀。这种方法在函数需要获取可变数量的参数的时候特别有用。

由于在args变量前有*前缀,所有多余的函数参数都会作为一个元组存储在args中。如果使用的是**前缀,多余的参数则会被认为是一个字典的键/值对。


看到例子不太理解,将数据打印出来后,明白了。

#!/usr/bin/python

def powersum(power, *args):

#'''Return the sum of each argument raised to specified power.'''

total = 0

for i in args:

total += pow(i, power)

print 'i is ',i,

print 'power is ', power,

print 'total is ', total

return total


powersum(2, 3, 4)


执行结果

>>> ================================ RESTART ================================

>>>

i is 3 power is 2 total is 9

i is 4 power is 2 total is 25


分析:原来是将参数如下处理:power=2 args =(3,4)


你可能感兴趣的:(python,args,args变量)