📅  最后修改于: 2022-03-11 14:46:09.653000             🧑  作者: Mango
# 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")