Python Poner en Mayusculas
>>> "que no grites".upper()
QUE NO GRITES
Código 360
>>> "que no grites".upper()
QUE NO GRITES
cadena = "este es el texto a modificar"
print(cadena.title())
# imprime: "Este Es El Texto A Modificar"
texto_en_mayusculas = "monty python".upper()
print(texto_en_mayusculas)
# imprime: MONTY PYTHON