Projet5/Exercice2/main.py
2024-07-19 20:19:46 -07:00

18 lines
319 B
Python

students = {
'Alice': {
'Mathematiques': 90,
'Francais': 80,
'Histoire': 95
},
'Bob': {
'Mathematiques': 75,
'Francais': 85,
'Histoire': 70
},
'Charlie': {
'Mathematiques': 88,
'Francais': 92,
'Histoire': 78
}
}