assume your quiz scores are stored as a dictionary. each entry of the dictionary consists of a name and an integer score as follows: {'alice': 80, 'bob': 85, 'carol': 83} write a function called getscores that takes such a dictionary as a parameter and returns a list of student scores without student names. [80, 85, 83] note: use the values() method.