def Sorted(v):
u=[]
temp=v[::] #复制原列表
while temp:
Min=min(temp)
u.append(Min)
temp.remove(Min)
return u
x=[5,6,2,4,1]
print(x)
print(Sorted(x))
python编写函数,模拟内置函数 sorted()
最新推荐文章于 2024-04-30 22:59:39 发布