“Python Check String Case нечувствительный” Ответ

Python String Match Ingenare Case

if firstStr.lower() == secStr.lower():
    print('Both Strings are same')
else:
    print('Strings are not same')
Xerothermic Xenomorph

Python Check String Case нечувствительный

string1 = 'Hello'
string2 = 'hello'

if string1.casefold() == string2.casefold():
    print("The strings are the same (case insensitive)")
else:
    print("The strings are NOT the same (case insensitive)")
DreamCoder

Python Check String Case нечувствительный

string1 = 'Hello'
string2 = 'hello'

if string1.lower() == string2.lower():
    print("The strings are the same (case insensitive)")
else:
    print("The strings are NOT the same (case insensitive)")
DreamCoder

Ответы похожие на “Python Check String Case нечувствительный”

Вопросы похожие на “Python Check String Case нечувствительный”

Больше похожих ответов на “Python Check String Case нечувствительный” по Python

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

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