From 41ad24cd92a8eb11f99ccc054a68ba826786440d Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Sun, 25 Jan 2015 23:34:19 +0100 Subject: [PATCH] =?UTF-8?q?TP1=20Corrig=C3=A9=20question=208?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- S2/TP1/tp1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S2/TP1/tp1.py b/S2/TP1/tp1.py index 2a86d69..71de220 100644 --- a/S2/TP1/tp1.py +++ b/S2/TP1/tp1.py @@ -92,7 +92,7 @@ question(8) idUniques = set(i[0] for i in l_etudiants) -test8 = len(idUniques) != len(l_etudiants) +test8 = len(idUniques) == len(l_etudiants) print('Le test a retourné', test8)