str=input('plz input some numbers for sorting without any separate')doit=list(str)for a in range(1,len(doit)): for b in range(a): if doit[a] > doit[b]: continue else: substitute=doit[a] del doit[a] doit.insert(b,substitute) breakprint(doit)
自己写的直接插入排序法,正在不断学习python中。。。
转载于:https://www.cnblogs.com/hawkgogo001/archive/2011/11/16/2251385.html