maiusculo em python

Solutions on MaxInterview for maiusculo em python by the best coders in the world

showing results for - "maiusculo em python"
Laura
19 Mar 2017
1texto = "Curso Python Progressivo"
2print(texto)
3
4texto = texto.upper()
5print(texto)
6