Skip to content

Instantly share code, notes, and snippets.

@goujonbe
Created November 1, 2020 11:21
Show Gist options
  • Save goujonbe/3373f4f009257e9d992d97d62a91cb27 to your computer and use it in GitHub Desktop.
Save goujonbe/3373f4f009257e9d992d97d62a91cb27 to your computer and use it in GitHub Desktop.
def is_valid_email_address(email: str) -> bool:
regex = "^[a-z0-9]+[\._]?[a-z0-9]+[@]\w+[.]\w{2,3}$"
return re.search(regex, email) is not None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment