“égal ignorer le cas Python” Réponses codées

Python String Match Ignore Case

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

égal ignorer le cas 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

Réponses similaires à “égal ignorer le cas Python”

Questions similaires à “égal ignorer le cas Python”

Plus de réponses similaires à “égal ignorer le cas Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code