xxxxxxxxxx
# Program to check the email and re-enterd email is same or different
email= "info@itsmycode.com"
confirmemail="INFO@ITSMYCODE.COM"
if(email.lower() == confirmemail.lower()):
print("Email Address are same")
else:
print("Email Address are not same")
xxxxxxxxxx
string1 = "apple"
string2 = "orange"
if string1 == string2:
print("The strings are equal")
else:
print("The strings are not equal")