1l = [i for i in range(1, 20) if i % 2 == 0] 2 3l = [] 4for i in range(1, 20): 5 if i % 2 == 0: 6 l.append(i) 7 8