Answers for "Python todo minusculo"

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 "Python todo minusculo"

Python Answers by Framework

Browse Popular Code Answers by Language