Exercice 43*
Écrire un algorithme Python qui prends en entrée une chaîne de caractères s et qui renvoie le premier caractère répété de s.
Exemple: si s = "django framework", l'algorithme renvoie le caractère 'a'
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# coding: utf-8 # fonction qui teste si un caractère est répété ou non def isRepeated(s,c): compteur = 0 for x in s: if x == c: compteur = compteur + 1 if compteur >= 2: return True else: return False # fonction qui renvoie le premier caractère répété def firstRepeated(s): repeated = '' for x in s: if isRepeated(s,x): repeated = x break return repeated # Exemple s = "django framework" print("Le premier caractère répété est : " , firstRepeated(s)) # Le programme afiche : Le premier caractère répété est : a |
Younes Derfoufi
CRMEF OUJDA