How-to articles, tricks, and solutions about CASE-INSENSITIVE
How do I do a case-insensitive string comparison?
You can convert both strings to lowercase or uppercase (using the lower() or upper() method) before doing the comparison.