From 67527aa172ac22fcfa1f5a20af8f66ee9fec37f0 Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Tue, 24 Feb 2015 13:59:42 +0100 Subject: [PATCH] TP4 creerListeRecherche MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originellement fait pendant la séance --- S2/TP4/tp4.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/S2/TP4/tp4.py b/S2/TP4/tp4.py index 985b5a1..439b8bf 100644 --- a/S2/TP4/tp4.py +++ b/S2/TP4/tp4.py @@ -118,12 +118,10 @@ squestion('b') # Effectuer de nombreuses recherches dans LEXIQUE # algorithmes utilisés # Définition des éléments choisis pour la recherche -from random import randint -NB_ELEMENTS = 10 -elements = list() -taille = len(LEXIQUE) -for n in range(NB_ELEMENTS): - elements.append(LEXIQUE[randint(0, taille)]) - -# +def creerListeRecherche(l, dans, hors): + elements = list() + taille = len(LEXIQUE) + for n in range(dans): + elements.append(LEXIQUE[randint(0, taille)]) + return elements