Answers for "maiusculo em python"

1

maiusculo em python

texto = "Curso Python Progressivo"
print(texto)

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

Python Answers by Framework

Browse Popular Code Answers by Language