“Python Check String Case Insensive” 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

Python Check String Case Insensive

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 Insensive

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

Odpowiedzi podobne do “Python Check String Case Insensive”

Pytania podobne do “Python Check String Case Insensive”

Więcej pokrewnych odpowiedzi na “Python Check String Case Insensive” w Python

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

Przeglądaj inne języki kodu