Answers for "converter texto caixa alta para caixa baixa python"

1

como deixar todas as letras maiusculas no python

texto = "Curso Python Progressivo"
print(texto)

texto = texto.upper()
print(texto)
Posted by: Guest on May-01-2020

Code answers related to "converter texto caixa alta para caixa baixa python"

Python Answers by Framework

Browse Popular Code Answers by Language