1. create a list of the following GPA values in the given order: 2.8,3.6,3.9,3.3,3.1,3.2,2.4,1.9. Assign it to a variabl
Posted: Thu Jul 14, 2022 2:18 pm
1. create a list of the following GPA values in the given order: 2.8,3.6,3.9,3.3,3.1,3.2,2.4,1.9. Assign it to a variable, goa list 2. print the list 3. get the first item of the list 4. get the last item of the list 5. remove the last item of the list and store in a variable. Name this variable popped gra 6. your boss gives you a new tuple: new. gpandist =(2.2,3.0, 3.8). Turn this tuple into a list and combine with the list from 1 above. 7. determine the length of the combined list 8. find out maximum gpa 9. find out the minimum gra 10. find the total of all the gpa values in the list 11. order the gpa values in ascending order 12. order the qpa values in descending order