Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 326 Bytes

File metadata and controls

10 lines (8 loc) · 326 Bytes

Python Programming Assignment

Problem Statement:

Validate give string is valid email address.

  1. Define function 'validate_email' which will accept string as argument.
  2. String should not be null.
  3. Use regexp to validate email.
  4. Use keyword pattern to define regex pattern.
  5. Function should pass all test cases.