Question: Language: Python Program used: PyCharm Interpreter: 3.6.1 at ~/anaconda/bin/python ----- ----- Starter code: https://pastebin.com/NgrECZQ7 candidates_2016: https://www.dropbox.com/s/oc8ws0qfz01664n/sk_election_candidates_2016.csv?dl=1 votecounts_2016: https://www.dropbox.com/s/ucgaf263q2x3qrm/sk_election_votecounts_2016.csv?dl=1 ----- YOU JUST NEED QUESTION #4 FROM
Language: Python
Program used: PyCharm
Interpreter: 3.6.1 at ~/anaconda/bin/python
-----

-----
Starter code: https://pastebin.com/NgrECZQ7
candidates_2016: https://www.dropbox.com/s/oc8ws0qfz01664n/sk_election_candidates_2016.csv?dl=1
votecounts_2016: https://www.dropbox.com/s/ucgaf263q2x3qrm/sk_election_votecounts_2016.csv?dl=1
-----
YOU JUST NEED QUESTION #4 FROM THE STARTER CODE PROVIDED ABOVE.
Question 4 (4 points): Purpose: To practice using data stored in dictionaries (databases, mappings). Degree of Difficulty: Easy Task: Write a function named find_winner that takes one argument: a dictionary containing the mapping of party names to vote counts for a single electoral district. The function will return the name of the party with the most votes. Details: The function should examine the vote counts for every party and return the winning party (i.e. the key of the maximum value in the dictionary. Example: If the vote count dictionary is 'LIB':962, 'NDP':3631, 'SK':3929 your function should return the string 'SK' (the key whose value is largest). Testing: Before going on, you want to be sure that your function works properly. The starter file has the testing code, but it will be initially part of a comment. Uncomment the testing for this question while you are working on it and comment it out when you are finished. Make sure your function works for any number of parties
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
