TP2 Le lexique > Q4 Utilisation méthode prof
This commit is contained in:
parent
6e1e73eee0
commit
7ff40e6b3d
|
@ -311,17 +311,16 @@ from lexique import *
|
||||||
|
|
||||||
question(3)
|
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)
|
question(4)
|
||||||
|
|
||||||
ens = set(LEXIQUE)
|
test = True
|
||||||
|
for i in len(LEXIQUE):
|
||||||
if len(ens) != len(LEXIQUE):
|
if LEXIQUE[i] in LEXIQUE[i+1:]:
|
||||||
print('Il y a des doublons')
|
test = False
|
||||||
else:
|
break
|
||||||
print('Il n \' y a pas de doublons')
|
print('Le test a retourné %s.' % test)
|
||||||
|
|
||||||
|
|
||||||
section('Anagrammes d\'un mot : première méthode')
|
section('Anagrammes d\'un mot : première méthode')
|
||||||
|
|
||||||
|
|
Reference in a new issue