
# Conditional

evens = []

for x in range(10):
    isEven = x % 2 == 0
    if isEven:
        evens.append(x)

print(evens)
