Maiusculo Em Python

texto = "Curso Python Progressivo"
print(texto)

texto = texto.upper()
print(texto)
Kind Kookaburra