我想使用特定索引將元素添加到列表中。使用插入它不適合我,因爲它應該在所有情況下。請看看:將元素添加到python中按照正確的順序排列
rest = [666, 555, 222]
s= sorted(rest)
list1 = []
list1.insert(rest.index(s[0]),3)
list1.insert(rest.index(s[1]),2)
list1.insert(rest.index(s[2]),1)
print list1
所以我想實現 - 最高值映射到最低的休息表。我得到的是: 1,3,2,目標是1,2,3(在這種情況下)。
據我所知,這是如何插入功能的作品,但有沒有其他辦法達到我想要的?
我已經回答了你的問題。如果有幫助,接受答案或評論,以突出您的問題:) –