“Строка Python” Ответ

Строка Python

message = 'PYTHON IS FUN'

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

# Output: python is fun
Matthew Johnson

преобразовать строку в нижний регистр в Python

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

#prints "hello"
ThePokedNoob

Строка Python

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

Как сделать строчный текст в Python

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

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

Строка Python Нижний метод

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

Python String до строгих регистра

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

Ответы похожие на “Строка Python”

Вопросы похожие на “Строка Python”

Больше похожих ответов на “Строка Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования