TP1 Retravaillé la question 3

This commit is contained in:
Geoffrey Frogeye 2015-01-25 23:23:12 +01:00
parent 2a9aff7fbd
commit 5b48976d16

View file

@ -26,15 +26,16 @@ print('Le test a retourné', test1)
question(2)
print("Il y a ", len(l_etudiants), " étudiants dans la liste")
print("Il y a", len(l_etudiants), "étudiants dans la liste")
question(3)
# TODO
print(l_etudiants[11501230%len(l_etudiants)])
monId = 11501230 # Jean-Loup
# monId = 11500683 # Geoffrey
fiche = l_etudiants[monId%len(l_etudiants)]
print("Cette fiche est celle de", fiche[2], fiche[1], "qui est en", fiche[3], fiche[4], "et son id est le", fiche[0])
question(4)