python累加不用函数 python累加求和函数( 二 )


其实用自带的sorted函数最省事python累加不用函数!
好吧python累加不用函数,来一个冒泡排序:
lists = [15, 7, 9, 2, 6, 16, 12, 8, 14, 18, 19, 20]
count = len(lists)
for i in range(0, count):
for j in range(i + 1, count):
if lists[i]lists[j]:
lists[i], lists[j] = lists[j], lists[i]
print(lists)
结果:
[20, 19, 18, 16, 15, 14, 12, 9, 8, 7, 6, 2]
【python累加不用函数 python累加求和函数】python累加不用函数的介绍就聊到这里吧 , 感谢你花时间阅读本站内容 , 更多关于python累加求和函数、python累加不用函数的信息别忘了在本站进行查找喔 。

推荐阅读