I\'m looking for ignore case string comparison in Python.
I tried with:
if line.find(\'mandy\') >= 0:
but no success for ignore
you can also use: s.lower() in str.lower()
s.lower() in str.lower()