You are viewing a single comment's thread. Return to all comments →
import re import email.utils total_emails = int(input()) valid_email = r"^\<[a-zA-Z][\w\.\-]*@[a-zA-Z]+\.[a-zA-Z]{1,3}\>$" for _ in range(total_emails): name_email = input() if re.match(valid_email, name_email.split()[1]): print(email.utils.formataddr(email.utils.parseaddr(name_email)))
Seems like cookies are disabled on this browser, please enable them to open this website
Validating and Parsing Email Addresses
You are viewing a single comment's thread. Return to all comments →