Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Email Validation Function
00:00
5 left

Email Validation Function

EasyPython

Problem

Write a simple function to validate an email address.

Implement validate_email(email) to return True when the string has a valid simple structure and False otherwise. Accept local parts containing letters, digits, ., _, %, +, and -; require exactly one @, a nonempty local part, and a domain containing valid dot-separated labels. Reject whitespace, consecutive dots, leading or trailing dots, and labels beginning or ending with -.

Examples: "qa.user@example.com" returns True; "qa@@example.com" returns False.

The input is a string, and the output is a Boolean.

Constraints

  • 1 <= len(email) <= 10^4
  • email contains printable ASCII characters
  • A domain must contain at least two dot-separated labels
  • This task validates simplified syntax, not the complete RFC email standard

Function Signature

def validate_email(email):
Interviewer

Your question is Email Validation Function. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.