x = (a/2 for a in [1, 2, 3])
print(x)
print(x.__iter__())
print(x is x.__iter__())