Discuss / Python / 练习1

练习1

Topic source

苏生不语_

#1 Created at ... [Delete] [Delete and Lock User]
def is_valid_email(addr):
    re_email = re.compile(r'[a-zA-Z.]+@\w+.com')
    return re_email.match(addr)

  • 1

Reply