我想按列表列表排序字典。列表 列表中的項目是字典中的鍵。按升序排列列表中的字典
喜歡的東西:
sort_by_increasing_order(['d', 'e', 'f'], {'d': [0, 1], 'e': [1, 2, 3], 'f': [4]})
result: ['f', 'e', 'd']
我的輸入列表是:
[
['why', 'was', 'cinderella', 'late', 'for', 'the', 'ball', 'she', 'forgot', 'to', 'swing', 'the', 'bat'],
['why', 'is', 'the', 'little', 'duck', 'always', 'so', 'sad', 'because', 'he', 'always', 'sees', 'a', 'bill', 'in', 'front', 'of', 'his', 'face'],
['what', 'has', 'four', 'legs', 'and', 'goes', 'booo', 'a', 'cow', 'with', 'a', 'cold'],
['what', 'is', 'a', 'caterpillar', 'afraid', 'of', 'a', 'dogerpillar'],
['what', 'did', 'the', 'crop', 'say', 'to', 'the', 'farmer', 'why', 'are', 'you', 'always', 'picking', 'on', 'me']
]
我的字典裏有些看起來是這樣的:
{'to': [7, 11, 17, 23, 24, 25, 26, 33, 34, 37, 39, 41, 47, 48, 53, 56],
'jam': [20], 'black': [5], 'farmer': [11],
'woodchuck': [54], 'has': [14, 16, 51], 'who': [16]
}
我有什麼打算是
def sort_by_increasing_order(mylist, myDict):
#temp = sorted(myDict, key=myDict.get)
temp = sorted(myDict, key=lambda tempKey: for tempKey in mylist, reverse=True)
return temp
輸出將是這樣的:
sort_by_increasing_order(mylist, myDict)
>> ['to','woodchuck','has','jam','who','farmer','black']
的註釋行剛剛通過排序的字典鍵,當我試圖通過列表進行排序。 我的方法不正確。結果應該是如上所述的具有指數長度 的遞增順序的列表。任何想法
增加什麼樣的順序?爲什麼在你的例子中'f'首先? – user2357112
我更新了樣本字典。字典中索引長度的增加順序等等是否澄清? – user3247054
@ user2357112有什麼建議嗎? – user3247054