Что выведется в консоль
x = [i for i in range(10)] y = {i for i in range(10)} z = (i for i in range(10)) print(x) print(y) print(z)