La chaîne Python contient une sous-chaîne Ignore Case

string1 = "hi"
string2 = "HI"
if string1.lower() == string2.lower():
    print "Equals!"
else:
    print "Different!"
Giamblers