How can I do case insensitive string comparison in Python?
I would like to encapsulate comparison of a regular strings to a repository string using in a very simple
How about converting to lowercase first? you can use string.lower().
string.lower()