2 lines
53 B
Python
2 lines
53 B
Python
print(list(filter(lambda x: x % 2 == 0, range(10))))
|
print(list(filter(lambda x: x % 2 == 0, range(10))))
|