def func_1():
    return ['a', 'b', 'c']

def func_2():
    """
    >>> func_1()
    ['a', 'b', 'c']
    """

    pass