Created
December 13, 2017 18:26
-
-
Save umutcoskun/ceec2d5435aae68a1cac6596dd65be30 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def validate_email(address): | |
import re | |
return bool(re.match(r'[^@]+@[^@]+\.[^@]+', address)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment