I\'m looking for ignore case string comparison in Python.
I tried with:
if line.find(\'mandy\') >= 0:
but no success for ignore
a = "MandY" alow = a.lower() if "mandy" in alow: print "true"
work around