“Równie ignoruj ​​skrzynkę Python” Kod odpowiedzi

Python String Match Ignoruj ​​obudowę

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

Równie ignoruj ​​skrzynkę Python

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

Odpowiedzi podobne do “Równie ignoruj ​​skrzynkę Python”

Pytania podobne do “Równie ignoruj ​​skrzynkę Python”

Więcej pokrewnych odpowiedzi na “Równie ignoruj ​​skrzynkę Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu