Como deixar todas comme letras Maiusculas pas de 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)