python how to check if any word regardless of capitalization is equal code example
Example: python string match ignore case
if firstStr.lower() == secStr.lower():
print('Both Strings are same')
else:
print('Strings are not same')
if firstStr.lower() == secStr.lower():
print('Both Strings are same')
else:
print('Strings are not same')