Answers for "python poner en mayusculas"

1

python poner en mayusculas

>>> "que no grites".upper()
QUE NO GRITES
Posted by: Guest on January-24-2021
1

python poner en mayusculas

texto_en_mayusculas = "monty python".upper()
print(texto_en_mayusculas)
# imprime: MONTY PYTHON
Posted by: Guest on January-23-2021
1

python primera letra mayuscula

cadena = "este es el texto a modificar"
print(cadena.title())
# imprime: "Este Es El Texto A Modificar"
Posted by: Guest on January-23-2021

Code answers related to "python poner en mayusculas"

Python Answers by Framework

Browse Popular Code Answers by Language