“Python String minas” Réponses codées

Python String minas

message = 'PYTHON IS FUN'

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

# Output: python is fun
Matthew Johnson

Convertir la corde en minuscules en python

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

#prints "hello"
ThePokedNoob

Python String minas

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

comment faire du texte minuscule en python

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

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

Méthode inférieure de la chaîne Python

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

Python String en minuscules

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

Réponses similaires à “Python String minas”

Questions similaires à “Python String minas”

Plus de réponses similaires à “Python String minas” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code