Answers for "colocar string uppercase 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
0

python string caps lock

>>> s = 'sdsd'
>>> s.upper()
'SDSD'
Posted by: Guest on May-14-2020

Code answers related to "colocar string uppercase python"

Python Answers by Framework

Browse Popular Code Answers by Language