assume your quiz scores are stored as a list. each entry of the list 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 list as a parameter and returns a list of student scores without student names. [80, 85, 83] note: use the [index]. note: use the append(..) method.