How to iterate through dictionary in our preferred keys order in python 2.7? -


  dct = {'first': 'pune', 'second': 'दिल्ली', 'तीसरा': 'चेन्नई', 'चौथा': 'बैंगलोर'}   

मैं इस शब्दकोश को फिर से शुरू करना चाहता हूं, लेकिन मेरे कुंजी के क्रम में, मुझे इसके बारे में एक विचार है लेकिन मुझे नहीं पता यह कैसे लागू किया जाए।

मेरा विचार:

  my_key_order = ['दूसरा', 'तीसरा', 'प्रथम', 'आगे']   

एक सूची में कुंजी के क्रम को निर्दिष्ट करें और शब्दकोश के माध्यम से पुनरावृत्त करने के लिए यह my_key_order सूची का उपयोग करें।

यह कैसे कार्यान्वित करें, पता नहीं।

क्या आपने कोशिश की?

  my_key_order में k के लिए: प्रिंट dct [k] < / Code>  

केवल my_key_order [: 2]: प्रिंट dct [k]

  केवल दो दो कुंजी: div> 

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -