![]() |
#2
TysonKoothra2019-03-17 11:07
|
def power(x,y, *others):
if others:
print('Received redundant parameters:', others)
return pow(x,y)
>>> params = (5,) * 2
>>> power(*params)
3125
请问这个3125是怎么运算出来的?