Hint

🧠 Not sure where to start?

  1. Start with this in the first line:

even_numbers = []

This creates an empty list to store your even numbers.

  1. Now think: how can you go through the numbers from 1 to 20 and check which ones are even? Maybe use a for loop that iterates over a range object?

for i in range(...