“Discutida em Python” Respostas de código

Discutida em 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

Discutida em Python

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

Discutida em Python

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

Respostas semelhantes a “Discutida em Python”

Perguntas semelhantes a “Discutida em Python”

Mais respostas relacionadas para “Discutida em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código