From 495a8c8582f3343e9293dd753b786bee6ec72b4c Mon Sep 17 00:00:00 2001 From: Dimitri Merejkowsky Date: Sun, 27 Oct 2019 16:00:53 +0100 Subject: [PATCH] Correction d'un example --- saison-2/sessions/python-S02-E04.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saison-2/sessions/python-S02-E04.md b/saison-2/sessions/python-S02-E04.md index 90d3f54..66c15ba 100644 --- a/saison-2/sessions/python-S02-E04.md +++ b/saison-2/sessions/python-S02-E04.md @@ -273,7 +273,7 @@ False ```python scores = { "Alice": 20, "Bob": 14 } for nom in scores: - score = scores[nome] + score = scores[nom] print(nom, "a un score de", score) ```