Answers for "ignore capitalization between strings python"

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
2

python capitalize the entire string

message="hi"
print(message)
print(message.upper())
Posted by: Guest on January-09-2020

Code answers related to "ignore capitalization between strings python"

Python Answers by Framework

Browse Popular Code Answers by Language