0 out of 68 challenges solved

Check voting eligibility based on the given age

def check_voting_eligibility(age):
    """
    Checks the voting eligibility based on the given age.

    Args:
    age (int): The person's age.

    Returns:
    str: A string indicating the voting eligibility.
    """
    # TODO: Implement the check_voting_eligibility function
    pass
Related challenges