Python String Match Ignoruj obudowę
if firstStr.lower() == secStr.lower():
print('Both Strings are same')
else:
print('Strings are not same')
Xerothermic Xenomorph