converter texto caixa alta para caixa baixa python code example
Example: como deixar todas as letras maiusculas no python
texto = "Curso Python Progressivo"
print(texto)
texto = texto.upper()
print(texto)
texto = "Curso Python Progressivo"
print(texto)
texto = texto.upper()
print(texto)