10 lines
No EOL
371 B
Python
10 lines
No EOL
371 B
Python
n1 = { 'nom': "Albert", 'NSI': 12.3, 'maths': 14.0,
|
|
'physique': 8.7 }
|
|
n2 = { 'nom': "Béatrice", 'NSI': 12.3, 'maths': 11.0,
|
|
'physique': 12.5 }
|
|
n3 = { 'nom': "Colin", 'NSI': 12.3, 'maths': 7.0,
|
|
'physique': 15.7 }
|
|
n4 = { 'nom': "Daniel", 'NSI': 13.4, 'maths': 9.0,
|
|
'physique': 5.2 }
|
|
n5 = { 'nom': "Emilie", 'NSI': 16.1, 'maths': 5.3,
|
|
'physique': 14.4 } |