import email.Utils def getCleanMailAddress(strAddr): emails = email.Utils.parseaddr(strAddr.lower()) return emails[1]
希望本文所述对大家的Python程序设计有所帮助。