8 lines
131 B
Python
8 lines
131 B
Python
|
import re
|
||
|
|
||
|
|
||
|
def validate_email(email_address):
|
||
|
if re.match(r'[^@]+@[^@]+\.[^@]+', email_address):
|
||
|
return True
|
||
|
return False
|