仔细观察下面两个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
运行时输入powersum(2,3,4)输出25(3的平方加上4的平方)
复制代码 代码如下:
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
运行时输入powersum(2,3,4)输出9(3的平方)
由此可见,对于python编写代码时,不能随意的缩进
最后
以上就是悲凉大米最近收集整理的关于python缩进区别分析的全部内容,更多相关python缩进区别分析内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复