lst=[3,8,2,7]print(lst)for i in range(len(lst)): for j in range(len(lst)-1-i): if lst[j]>lst[j+1]: tmp=lst[j] lst[j]=lst[j+1] lst[j+1]=tmpprint(lst)