python----列表排序(由小到大)

#-*-  coding:utf-8 -*- app list=[3,56,54,67,88,999,556,1]utf-8def mySort(list):     newList=[]     for i in range(len(list)):         number=min(list)         newList.append(number)         list.remov
相關文章
相關標籤/搜索