Python String capitalize (), méthode
Chaîne Python capitalize() La méthode renvoie une copie de la chaîne avec uniquement son premier caractère en majuscule.
Syntaxe
str.capitalize()
Paramètres
NA
Valeur de retour
chaîne
Exemple
#!/usr/bin/python
str = "this is string example....wow!!!";
print "str.capitalize() : ", str.capitalize()
Résultat
str.capitalize() : This is string example....wow!!!