python编写函数,模拟内置函数 sorted()

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,python)