python_ref_iter.py:
x
 
x = iter(["apple", "banana", "cherry"])
print(next(x))
print(next(x))
print(next(x))