Maiusculo em python
texto = "Curso Python Progressivo"
print(texto)
texto = texto.upper()
print(texto)
Kind Kookaburra
texto = "Curso Python Progressivo"
print(texto)
texto = texto.upper()
print(texto)