Untitled

Anonymous
plain_text
11/29/2023 2:42 PM
240 B
12
Indexable
import re
email=input("Enter the email-id to check : ")

e=re.search("\w*@gmail[.]com",email)

if e!=None:
    print("Email is valid")
else:
    print("Email is not valid")
Editor is loading...
Leave a Comment