0 out of 68 challenges solved

Split a string into a list

def generate_list(values):
    """
    Generates a list containing each number from a sequence of comma-separated numbers.

    Args:
    values (str): The input sequence of comma-separated numbers.

    Returns:
    list: The generated list.
    """
    # TODO: Implement the generate_list function
    pass