1、冒泡排序代码如下图:
#冒泡算法l=[12,4,56,10,6,2]for i in range(0,6): for j in range(i+1,6): if l[i]>l[j]: a=l[i] l[i]=l[j] l[j]=a else: continue