Exercice 25
Reprendre l'exercice précédent (Exercice 24) mais cette fois-ci on vous demande de trouver l'ensemble des mots qui se terminent par l'occurrence 'ab' comme: 'edab' , 'aaab' etc.
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
E = {'a' , 'b' , 'c' , 'd' , 'e'} # initialisation de l'ensemble demandé F = set({}) for x in E: for y in E: for z in E: for t in E: if z == 'a' and t== 'b': F.add(x+y+z+t) print("F = " , F) """ output: F = {'dcab', 'acab', 'ceab', 'edab', 'aeab', 'abab', 'ccab', 'ebab', 'baab', 'adab', 'bbab', 'bdab', 'bcab', 'daab', 'cbab', 'cdab', 'deab', 'beab', 'ddab', 'caab', 'eeab', 'dbab', 'eaab', 'ecab', 'aaab'} """ |
Younes Derfoufi
CRMEF OUJDA
Acheter sur Très Facile !
1 thought on “Solution Exercice 25: esemble des mots qui se terminent par une occurrence donnée”