Como Deixar Todas jako Letras Maiusculas no Python

texto = "Curso Python Progressivo"
print(texto)

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