18 lines
319 B
Python
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
|
|
}
|
|
}
|