3 lines
58 B
Python
3 lines
58 B
Python
|
even_numbers = list(range(2, 11, 2))
|
||
|
print(even_numbers)
|