Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to sort a dictionary by keys in Python

4 Answers

0 votes
import collections

d = {'python': 5, 'php': 3, 'java': 9, 'c++': 1}
   
od = collections.OrderedDict(sorted(d.items(), key=lambda k: k[0]))
print(od)

d = dict(od)  
print(d)
  
  
  
'''
run:
   
OrderedDict([('c++', 1), ('java', 9), ('php', 3), ('python', 5)])
{'c++': 1, 'java': 9, 'php': 3, 'python': 5}
 
'''

 



answered Jun 26, 2020 by avibootz
edited Apr 11, 2021 by avibootz
0 votes
import collections

dict = {'python': 5, 'php': 3, 'java': 9, 'c++': 1}
   
od = collections.OrderedDict(sorted(dict.items(), key=lambda k: k[0]))
  
for key, value in od.items(): 
    print(key, value) 
  
  
  
'''
run:
   
c++ 1
java 9
php 3
python 5
 
'''

 



answered Jun 26, 2020 by avibootz
edited Apr 11, 2021 by avibootz
0 votes
dict = {'python': 5, 'php': 3, 'java': 9, 'c++': 1}
  
dict = sorted(dict.items())

print(dict)
 
 
 
'''
run:
  
[('c++', 1), ('java', 9), ('php', 3), ('python', 5)]

'''

 



answered Jun 26, 2020 by avibootz
0 votes
d = {'python': 5, 'php': 3, 'java': 9, 'c++': 1}
   
d = dict(sorted(d.items()))
 
print(d)
  
  
  
'''
run:
   
{'c++': 1, 'java': 9, 'php': 3, 'python': 5}

'''

 



answered Apr 11, 2021 by avibootz

Related questions

1 answer 181 views
1 answer 187 views
1 answer 215 views
1 answer 131 views
2 answers 175 views
1 answer 137 views
1 answer 134 views
...