pyufunc.is_valid_email#
- pyufunc.is_valid_email(email)#
Check if the email is valid.
- Parameters:
email (str) – email address, eg. luoxiangyong01@gmail.com
- Returns:
True if the email is valid, False otherwise
- Return type:
Examples
>>> from pyufunc import is_valid_email >>> is_valid_email("luoxiangyong01@gamil.com") >>> True >>> is_valid_email("luoxiangyong01") >>> False