“Python String en minúsculas” Código de respuesta

Python String en minúsculas

message = 'PYTHON IS FUN'

# convert message to lowercase
print(message.lower())

# Output: python is fun
Matthew Johnson

Convierta la cuerda en minúsculas en Python

str = 'HELLO'
print(str.lower())

#prints "hello"
ThePokedNoob

Python String en minúsculas

startString = "TeST StrIng"
lowerCaseString = startString.lower()
print(lowerCaseString)
# Output -> "test string"
Cautious Cicada

Cómo hacer texto en minúsculas en Python

y = text = "HI THIS IS HUSSEIN ASADI FROM IRAN"

y = text.lower()
print(y)
husseinpenart

Método inferior de Python String

str1 = "HeLlO_wOrLd!"
str1.lower()
Output: 'hello_world!'
Contended Cobra

cuerda de pitón a minúsculas

# String to Lowercase by Matthew Johnson
myStr = "LetS FiX ThiS."
print(myStr.lower())
#OUTPUT: "lets fix this."
Matthew Johnson

Respuestas similares a “Python String en minúsculas”

Preguntas similares a “Python String en minúsculas”

Más respuestas relacionadas con “Python String en minúsculas” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código