Posts by Celeste • 3 points
1 post
-
-2
votes1
answer40
viewsQ: Deleting item from list (dictionary) - Python
I own a dictionary called alunos, that works by relating a student’s name to a list of grades, for example: alunos = {'Fulano': [2, 4, 10, 5.5]} I need to delete the first value from this list,…