编写函数,模拟Python内置函数sorted()。
编写函数,模拟Python内置函数sorted()。
正确答案:defSorted(v):t=v[:]r=[]whilet:tt=min(t)r.append(tt)t.remove(tt)returnr
Tag:计算机科学与技术 Python语言程序设计 函数
时间:2024-02-04 16:48:03