outer = (x for x in range(3))
inner = (y * 10 for y in outer if y % 2 == 0)
print(list(inner))
print(list(outer))
Post #2953
624
Что выведет код?