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