Hint
🧠Not sure where to start?
Start with this in the first line:
even_numbers = []This creates an empty list to store your even numbers.
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(...
