import re def validate_email(email: str) -> str: if not re.match(r'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$', email): return 'ایمیل نامعتبر است' return 'ایمیل معتبر است' # Example email = 'aabrahimi1718@gmail.com' print(validate_email(email)) # Output => ایمیل معتبر است