dict={"Andres":[5.0, 4.0, 3.0, 5.0], "Miguel":[5.0, 4.0, 4.0, 5.0], "Manuel":[4.5, 5.0, 5.0, 5.0], "Shelse":[5.0, 4.0, 3.0, 5.0]}
print(dict)

#Al diccionario del ejercicio anterior, modifica el nombre y las notas de un estudiante

dict["Yeison"]= dict.pop("Andres")
print(dict)

dict["Yeison"]= [5.0, 5.0, 2.0, 2.4]
print(dict)

#Agrega un estudiante nuevo, junto con sus notas

dict["Esteban"]= ([5.0, 5.0, 5.0, 5.0])
print(dict)

#Elimina un estudiante diferente al modificado y al agregado

del dict["Shelse"]
print(dict)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: