一.冒泡排序# 冒泡排序
lst = [11, 22, 35, 6, 2]
for i in range(len(lst)):
i = 0
while i < len(lst) - 1:
if lst[
2020-09-25