Cara memeriksa apakah dua string sama dengan 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")
Gorgeous Gazelle