Exercice 27
Ecrire un algorithme Python qui détermine la liste des mots commençant par une majuscule dans un texte T donné.
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#coding: utf-8 def beginMaj( T ): # initialisation de la liste des mots qui commencent par une majuscule maj = [] # convertir le texte T en une liste: L = T.split() for mot in L: if (mot[0].isupper()): maj.append(mot) return maj # Exemple T = "Python is more power thant Java" print(beginMaj(T)) # affiche ['Python', 'Java'] |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 27: algorithme python qui détermine la liste des mots commençant par une majuscule”