Answers for "python check if 2 strings are equal"

0

How to check if two strings are same in Python

# Program to check the email and re-enterd email is same or different
email= "[email protected]"
confirmemail="[email protected]"

if(email.lower() == confirmemail.lower()):
    print("Email Address are same")
else:
    print("Email Address are not same")
Posted by: Guest on November-29-2021

Code answers related to "python check if 2 strings are equal"

Python Answers by Framework

Browse Popular Code Answers by Language