From 7ff40e6b3da486e8b85f0cabb6ea589bd6a232b6 Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Mon, 9 Feb 2015 17:41:15 +0100 Subject: [PATCH] =?UTF-8?q?TP2=20Le=20lexique=20>=20Q4=20Utilisation=20m?= =?UTF-8?q?=C3=A9thode=20prof?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- S2/TP2/tp2.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/S2/TP2/tp2.py b/S2/TP2/tp2.py index 49f6d2a..73c3e27 100644 --- a/S2/TP2/tp2.py +++ b/S2/TP2/tp2.py @@ -311,17 +311,16 @@ from lexique import * question(3) -print('Il y a', len(LEXIQUE), 'mots dans le lexique') +print('Il y a %d mots dans le lexique' % len(LEXIQUE)) question(4) -ens = set(LEXIQUE) - -if len(ens) != len(LEXIQUE): - print('Il y a des doublons') -else: - print('Il n \' y a pas de doublons') - +test = True +for i in len(LEXIQUE): + if LEXIQUE[i] in LEXIQUE[i+1:]: + test = False + break +print('Le test a retourné %s.' % test) section('Anagrammes d\'un mot : première méthode')