Computer Science, asked by dishdhauma49, 11 months ago

write a program code to sort a dictionary's key using bubble sort and produce the sorted keys as a list​

Answers

Answered by Suzuka222
1

Answer. ..

Python | Sort Python Dictionaries by Key or Value

Prerequisite:

Dictionary

List

Merging Two Dictionaries

Dictionary Methods

Problem Statement – Here are the major tasks that are needed to be performed.

Create a dictionary and display its keys alphabetically.

Display both the keys and values sorted in alphabetical order by the key.

Same as part (ii), but sorted in alphabetical order by the value.

Approach –

Load the Dictionary and perform the following operations:

First, sort the keys alphabetically using key_value.iterkeys() function.

Second, sort the keys alphabetically using sorted (key_value) function & print the value corresponding to it.

Third, sort the values alphabetically using key_value.iteritems(), key = lambda (k, v) : (v, k))

Recommended: Ple

please mark as brainliest,


dishdhauma49: where is the code
Answered by anuragprakash47
4

The answer is in attachment with an example(proof).

Hope this will help you!!

Attachments:
Similar questions