You have a total of two attempts to take this quiz. Your gra…

Questions

Yоu hаve а tоtаl оf two attempts to take this quiz. Your grade will be the average of both attempts. The quiz will save and submit automatically when the time expires and it must be completed in one sitting. Do not leave the test before clicking Save and Submit.   You have two attempts at the quiz, but both attempts must be made before the weekly deadline.  YOU MUST USE THE REMOTE PROCTOR SYSTEM TO TAKE THIS QUIZ. Please follow the instructions below : Your Photo ID MUST be clearly shown to the camera so it can be confirmed.   Your cameras MUST not be covered during the quiz.  If the camera is not capturing your environment and not recording during the quiz, you WILL get a zero on the quiz. Your exam environment MUST be confirmed with a COMPLETE 360 degree scan of the room, including your desk and around the desk.  There must not be any other monitors on your desk even if they are turned off. You MUST face towards your computer screen during the entire exam  This is a closed note and closed book exam. Class notes and textbooks MUST not be used. Dry-erase white board may be used; you must CLEARLY show both sides of the board to the camera before you begin.  You must erase everything you write on the board during the test and show the erased board to the camera after you finish You may use a calculator that is not part of your cell phone or your computer or tablet and you must show the calculator to the camera.  IMPORTANT: The use of any resources during this exam, such as textbooks, notes, computer files, powerpoint slides, the internet, or other people is strictly prohibited.  Doing so constitutes an act of academic dishonesty which may result in a grade of zero and is subject to academic penalties and a report of academic misconduct.

Functiоn nаme:  springFun() Pаrаmeters:   vоtes - a list representing vоtes for places to travel to Return Value: dict Description:  With spring break right around the corner, you and your friends don't know where you should go! Everyone starts shouting where they want to go all at once making it hard to keep track of everything. You finally decide to take a vote and organize all the places, so you can decide once and for all where to spend your spring break! Write a function that takes a list of places to travel to, and returns a dictionary showing how many votes each place got. You really like destinations that have an 'e' in it, so their votes count for 3 times! Also, make sure your function is case-insensitive! to make the final dictionary nice and organized! Test Case: >>> print(springFun(['Japan', 'RomE', 'japan', 'ITALY', 'United Kingdom', 'rome'])) {'japan': 2, 'rome': 6, 'italy': 1, 'united kingdom': 3} >>> print(springFun(['Georgia', 'georgia', 'virginia', 'washington', 'California', 'Tennessee'])) {'georgia': 6, 'virginia': 1, 'washington': 1, 'california': 1, 'tennessee': 3}