Print [i for i in range(13) if i % 2 == 0].
Filter in a comprehension.
[0, 2, 4, 6, 8, 10, 12]
n = 13