简体   繁体   中英

In Python, identify parts of an e-mail address

Given a list of e-mail addresses:

list = ('First Last <first@example.com>' , 'name@example.org')

some of which contain first and last name, others which just contain an e-mail address, how can I loop through the list and extract a first and last name (if they exist), and the email address?

Thanks.

import email.utils
map(email.utils.parseaddr, email_list)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM