“Upper Python Python.org” Código de respuesta

Python a la mayúscula

text = "Random String"
text = text.upper() #Can also do 
text = upper(text)
print(text)

>> "RANDOM STRING"
Delta Sierra

Upper Python Python.org

text = "Random String"
text = text.upper()
print(text)
>> "RANDOM STRING"
Felipebros

pitón en mayúsculas

# example string
string = "this should be uppercase!"
print(string.upper())

# string with numbers
# all alphabets should be lowercase
string = "Th!s Sh0uLd B3 uPp3rCas3!"
print(string.upper())
Unusual Unicorn

Respuestas similares a “Upper Python Python.org”

Preguntas similares a “Upper Python Python.org”

Más respuestas relacionadas con “Upper Python Python.org” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código