Sort a python dictionary by order of items on list -


मेरे पास एक शब्दकोश है जैसे {'james': 32, 'jacob': 43, 'marie': 3 } । ।

मैं कैसे मानता हूँ कि मुझे ['मैरी', 'जैकब', 'जेम्स'] की तरह एक सूची है, ताकि नए शब्दकोश सूची में आइटम के क्रम से हल किया जाएगा?

यानी, परिणाम:

  {'मैरी': 3, 'जैकब': 43, 'जेम्स आप एक शब्दकोश को सॉर्ट नहीं कर सकते हैं, लेकिन आप यहां इसका उपयोग कर सकते हैं:  

  & gt; & gt; & gt; संग्रह आयात से आयातित डिक्ट & gt; & gt; & gt; ऑपरेटर आयात आइटम से लेकर; & gt; & gt; & gt; Lst = ['मैरी', 'जैकब', 'जेम्स']> gt; & gt; & gt; D = {'james': 32, 'jacob': 43, 'मैरी': 3}> gt; & gt; आदेश दिया गया (क्रम (लिस्ट, मदस्टेटर (* लिस्ट) (डी))) आदेशित ([('मैरी', 3), ('जैकब', 43), ('जेम्स', 32)])   

Comments

Popular posts from this blog

java - org.apache.http.ProtocolException: Target host is not specified -

java - Gradle dependencies: compile project by relative path -

ruby on rails - Object doesn't support #inspect when used with .include -