第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

按降序排列以下字典的列表

按降序排列以下字典的列表

慕哥9229398 2022-11-29 15:51:33
我有下面的字典,我想要排序的字典dict1 = {'years': [{'doc_1': 1}, {'doc_2': 0}, {'doc_3': 0}], 'working': [{'doc_1': 1}, {'doc_2': 1}, {'doc_3': 0}],     'experience': [{'doc_1': 1}, {'doc_2': 0}, {'doc_3': 0}], 'I': [{'doc_1': 1}, {'doc_2': 0}, {'doc_3': 0}],     'T': [{'doc_1': 1}, {'doc_2': 0}, {'doc_3': 0}], 'associated': [{'doc_1': 1}, {'doc_2': 0}, {'doc_3': 0}],     'different': [{'doc_1': 1}, {'doc_2': 1}, {'doc_3': 0}],     'organizations': [{'doc_1': 1}, {'doc_2': 0}, {'doc_3': 0}],     'His': [{'doc_1': 1}, {'doc_2': 0}, {'doc_3': 1}], 'work': [{'doc_1': 1}, {'doc_2': 0}, {'doc_3': 0}],     'domain': [{'doc_1': 1}, {'doc_2': 1}, {'doc_3': 0}], 'area': [{'doc_1': 1}, {'doc_2': 0}, {'doc_3': 0}],     'financial': [{'doc_1': 1}, {'doc_2': 1}, {'doc_3': 0}], 'Project': [{'doc_1': 0}, {'doc_2': 1}, {'doc_3': 0}],     'Manager': [{'doc_1': 0}, {'doc_2': 1}, {'doc_3': 0}], 'He': [{'doc_1': 0}, {'doc_2': 1}, {'doc_3': 0}],     'areas': [{'doc_1': 0}, {'doc_2': 1}, {'doc_3': 0}], 'major': [{'doc_1': 0}, {'doc_2': 1}, {'doc_3': 0}],     'patient': [{'doc_1': 0}, {'doc_2': 2}, {'doc_3': 0}], 'billing': [{'doc_1': 0}, {'doc_2': 1}, {'doc_3': 0}],     'assessments': [{'doc_1': 0}, {'doc_2': 1}, {'doc_3': 0}],     'radiation': [{'doc_1': 0}, {'doc_2': 1}, {'doc_3': 0}],     'endoscopy': [{'doc_1': 0}, {'doc_2': 1}, {'doc_3': 0}],     'interest': [{'doc_1': 0}, {'doc_2': 0}, {'doc_3': 1}],     'data': [{'doc_1': 0}, {'doc_2': 0}, {'doc_3': 3}], 'science': [{'doc_1': 0}, {'doc_2': 0}, {'doc_3': 2}],     'favorite': [{'doc_1': 0}, {'doc_2': 0}, {'doc_3': 1}], 'book': [{'doc_1': 0}, {'doc_2': 0}, {'doc_3': 1}],     'big': [{'doc_1': 0}, {'doc_2': 0}, {'doc_3': 1}]}我想明智地對(duì)價(jià)值進(jìn)行排序,即文檔首先打印最高價(jià)值然后降低并且不打印 0 價(jià)值文檔。
查看完整描述

2 回答

?
慕尼黑5688855

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超2個(gè)贊

這里有一個(gè)解決方案:


d = {}

for key,list_dict in dict1.items():

    d[key]  = sorted([k for k  in list_dict if list(k.items())[0][1] >0], key=lambda x: list(x.items())[0][1], reverse=True)


d

輸出:


{'He': [{'doc_2': 1}],

 'His': [{'doc_1': 1}, {'doc_3': 1}],

 'I': [{'doc_1': 1}],

 'Manager': [{'doc_2': 1}],

 'Project': [{'doc_2': 1}],

 'T': [{'doc_1': 1}],

 'area': [{'doc_1': 1}],

 'areas': [{'doc_2': 1}],

 'assessments': [{'doc_2': 1}],

 'associated': [{'doc_1': 1}],

 'big': [{'doc_3': 1}],

 'billing': [{'doc_2': 1}],

 'book': [{'doc_3': 1}],

 'data': [{'doc_3': 3}],

 'different': [{'doc_1': 1}, {'doc_2': 1}],

 'domain': [{'doc_1': 1}, {'doc_2': 1}],

 'endoscopy': [{'doc_2': 1}],

 'experience': [{'doc_1': 1}],

 'favorite': [{'doc_3': 1}],

 'financial': [{'doc_1': 1}, {'doc_2': 1}],

 'interest': [{'doc_3': 1}],

 'major': [{'doc_2': 1}],

 'organizations': [{'doc_1': 1}],

 'patient': [{'doc_2': 2}],

 'radiation': [{'doc_2': 1}],

 'science': [{'doc_3': 2}],

 'work': [{'doc_1': 1}],

 'working': [{'doc_1': 1}, {'doc_2': 1}],

 'years': [{'doc_1': 1}]}


查看完整回答
反對(duì) 回復(fù) 2022-11-29
?
蕭十郎

TA貢獻(xiàn)1815條經(jīng)驗(yàn) 獲得超13個(gè)贊

這應(yīng)該可以解決您的問題:-


res = {}

for key, value in dict1.items():

    res[key] = [i for i in dict1[key] if 0 not in (i.values())]

    res[key] = sorted(res[key], key=lambda x : x[list(x.keys())[0]], reverse=True)


print(res)

輸出:-


{'years': [{'doc_1': 1}], 'working': [{'doc_1': 1}, {'doc_2': 1}], 

 'experience': [{'doc_1': 1}], 'I': [{'doc_1': 1}], 'T': [{'doc_1': 1}], 

 'associated': [{'doc_1': 1}], 'different': [{'doc_1': 1}, {'doc_2': 1}], 

 'organizations': [{'doc_1': 1}], 'His': [{'doc_1': 1}, {'doc_3': 1}], 

 'work': [{'doc_1': 1}], 'domain': [{'doc_1': 1}, {'doc_2': 1}], 

 'area': [{'doc_1': 1}], 'financial': [{'doc_1': 1}, {'doc_2': 1}], 

 'Project': [{'doc_2': 1}], 'Manager': [{'doc_2': 1}], 'He': [{'doc_2': 1}], 

 'areas': [{'doc_2': 1}], 'major': [{'doc_2': 1}], 'patient': [{'doc_2': 2}], 

 'billing': [{'doc_2': 1}], 'assessments': [{'doc_2': 1}], 'radiation': [{'doc_2': 1}], 

 'endoscopy': [{'doc_2': 1}], 'interest': [{'doc_3': 1}], 'data': [{'doc_3': 3}], 

 'science': [{'doc_3': 2}], 'favorite': [{'doc_3': 1}], 'book': [{'doc_3': 1}], 

 'big': [{'doc_3': 1}]

}


查看完整回答
反對(duì) 回復(fù) 2022-11-29
  • 2 回答
  • 0 關(guān)注
  • 100 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)