import re
def validar_correo(correo):
if re.match('^[(a-z0-9\_\-\.)]+@[(a-z0-9\_\-\.)]+\.[(a-z)]{2,15}$',correo.lower()):
return True
else:
return False
correo = input("Ingrese correo: ")
if validar_correo(correo):
print("Correo correcto")
else:
print("Correo incorrecto")
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)