Python String corresponde ao caso de ignorar
if firstStr.lower() == secStr.lower():
print('Both Strings are same')
else:
print('Strings are not same')
Xerothermic Xenomorph