“Casefold в Python” Ответ

Casefold в Python

s1 = 'ß'
s2 = 'ss'
s3 = 'SS'
if s1.casefold() == s2.casefold():
    print('Casefolded strings of s1 and s2 are equal')
else:
    print('Casefolded strings of s1 and s2 are not equal')
 
if s1.casefold() == s3.casefold():
    print('Casefolded strings of s1 and s3 are equal')
Mighty Unicorn

Casefold в Python

my_str = "Hello from AskPython"
 
casefolded_str = my_str.casefold()
 
print(casefolded_str)
Mighty Unicorn

Casefold в Python

string = "PYTHON IS AWESOME"
# casefold is used to lowercase the string
# print lowercase string
print("Lowercase string:", string.casefold())
Mighty Unicorn

Ответы похожие на “Casefold в Python”

Вопросы похожие на “Casefold в Python”

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

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

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