Description de la méthode max() python
La méthode de chaîne de caractères Python max() renvoie le caractère alphabétique maximum d'une chaîne.
Syntaxe de la méthode max() python
1 |
max(string) |
Exemples d'usage de la méthode max()
1 2 3 4 5 6 7 8 |
str1 = "Python Programming" print(max(str1)) # affiche: "y" str2 = "123456" print(max(str2)) # affiche: "6" str3 = "aB" print(max(str3)) # affiche: "a" |
Younes Derfoufi
CRMEF OUJDA
1 thought on “La méthode de chaine de caractères max() en Python”