Answers for "python string match ignore case"

5

python string match ignore case

if firstStr.lower() == secStr.lower():
    print('Both Strings are same')
else:
    print('Strings are not same')
Posted by: Guest on April-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language