仔细观察下面两个python程序,代码一模一样,但是运行的结果却不同,就是因为最后一行return缩进的不同
复制代码 代码如下:
def powersum(power, *args):
'''Return the sum of each argument raised to specified power.'''
total = 0
for i in args:
total += pow(i, power)
return total
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8