“Convertir la corde en minuscules Python” Réponses codées

comment changer une chaîne en petite lettre en python

my_str = "Hello World"
my_str.lower()
print(my_str) # outputs "hello world" on the terminal
ProCoderMove

Convertir la corde en minuscules Python

message = 'PYTHON IS FUN'

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

# Output: python is fun
Matthew Johnson

Python en majuscules

original = Hello, World!

#both of these work
upper = original.upper()
upper = upper(original)
DaWildOne

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

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

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

Réponses similaires à “Convertir la corde en minuscules Python”

Questions similaires à “Convertir la corde en minuscules Python”

Plus de réponses similaires à “Convertir la corde en minuscules Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code