def even_zero2n_another()

in comprehension.py [0:0]


def even_zero2n_another(n):
    l = [i for i in range(n + 1) if i % 2 == 0]
    return l