File size: 116 Bytes
b407a42
 
 
 
1
2
3
4
import re

def is_email(identifier: str) -> bool:
    return re.match(r"[^@]+@[^@]+\.[^@]+", identifier) is not None