“Python Check String Case unempfindlich” Code-Antworten

Python String Match ignorieren Sie den Fall

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

Python Check String Case unempfindlich

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 unempfindlich

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

Ähnliche Antworten wie “Python Check String Case unempfindlich”

Fragen ähnlich wie “Python Check String Case unempfindlich”

Weitere verwandte Antworten zu “Python Check String Case unempfindlich” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen