En Python, el método capitalize() devuelve una copia de la string original y convierte el primer carácter de la string en una letra mayúscula (mayúscula) mientras convierte todos los demás caracteres de la string en minúsculas .
Sintaxis:
string_name.capitalize()
string_name: it is the name of string of Whose first Character we want to capitalize.
string_name_after_capitalize: It is the name of string of whose first character we want to capitalize.
Parámetro: La función capitalize() no toma ningún parámetro.
Valor devuelto: La función capitalize() devuelve una string con el primer carácter en mayúscula.
A continuación se muestra el programa python para ilustrar la función capitalize():
Python
# Python program to demonstrate the # use of capitalize() function # capitalize() first letter of string # and make other letters lowercase name = "geeks FOR geeks" print(name.capitalize()) # demonstration of individual words # capitalization to generate camel case name1 = "geeks" name2 = "for" name3 = "geeks" print(name1.capitalize() + name2.capitalize() + name3.capitalize())
Producción
Geeks for geeks GeeksForGeeks