Author name: PythonCSIP CS IP

1. Election is a dictionary where key : value pairs are in the form of name:votes received. Write a program that sorts the contents of the Election dictionary and creates two lists that stores the sorted data. List A[i] will contain the name of the candidate and ListB[i] will contain the votes received by candidate ListA[i]. Print the name of candidates with votes received in descending order of the number of votes received.

def bubble_sort(arr): for i in range(len(arr)-1): for j in range(i+1, len(arr)): if arr[i][1] < arr[j][1]: arr[i], arr[j] = arr[j], arr[i] return arr Election = {'Abdul':500, 'Mohan':395, 'Amir':800, 'Atishi':1000, 'Gautam':900} e = bubble_sort(list(Election.items())) # Election.items() returns a list of tuples with each tuple being key:value pair from the dictionary A1 = [e[i][0] for i in range(len(e))] […]

1. Election is a dictionary where key : value pairs are in the form of name:votes received. Write a program that sorts the contents of the Election dictionary and creates two lists that stores the sorted data. List A[i] will contain the name of the candidate and ListB[i] will contain the votes received by candidate ListA[i]. Print the name of candidates with votes received in descending order of the number of votes received. Read More »

3. Write a program to read a list containing 3-digit integers only. Then write an insertion sort program that sorts the list on the basis of one’s digit of all elements. That is, if given list is :

[387, 410, 285, 106] then the sorted list (as per above condition) should be : [410, 285, 106, 387] “One’s digits are in sorted order (0, 5, 6, 7). For two matching one’s digits, the order remains as in the original list. # Code def insertion_sort(arr): for i in range(1,len(arr)): key = arr[i] j =

3. Write a program to read a list containing 3-digit integers only. Then write an insertion sort program that sorts the list on the basis of one’s digit of all elements. That is, if given list is : Read More »