How to sort a dictionary by key in ascending order Python

2 Answers

0 votes
dictionary = {'D': 5, 'F': 6, 'A': 3, 'E': 8, 'C': 1, "B": 7}
   
dic_sort_by_value = dict(sorted(dictionary.items(), key=lambda item: item[0]))
  
print(dic_sort_by_value)
 
 
 
'''
run:

{'A': 3, 'B': 7, 'C': 1, 'D': 5, 'E': 8, 'F': 6}
 
'''

 



answered Apr 30, 2023 by avibootz
edited Feb 16 by avibootz
0 votes
dic = {'php': 99, 'c': 108, 'c++': 31, 'python': 21}

dic = dict(sorted(dic.items()))

for key, value in dic.items():
    print(f"{key} - {value}")



'''
run:

c - 108
c++ - 31
php - 99
python - 21

'''

 



answered Feb 16 by avibootz

Related questions

1 answer 121 views
1 answer 118 views
2 answers 117 views
1 answer 162 views
1 answer 140 views
1 answer 107 views
...