0 of 464 solved

Validate an Email Address

Write a function `validate_email_address(email)` that returns `True` when `email` matches the expected address format and `False` otherwise.

A valid address for this challenge:
- starts with one or more alphanumeric characters
- contains a single `@`
- has one or more alphanumeric characters after the `@`
- ends with a period followed by at least two letters

#### Example
Input: `"[email protected]"`
Output: `True`
import re

def validate_email_address(email):
    """
    Validates an email address based on certain criteria using regex.

    Args:
    email (str): The input email address.

    Returns:
    bool: True if the email address is valid, False otherwise.
    """
    # TODO: Implement the validate_email_address function
    pass