1# builtin type that is not iterable
2try:
3    for i in 1:
4        pass
5except TypeError:
6    print('TypeError')
7
8# builtin type that is iterable, calling __next__ explicitly
9print(iter(range(4)).__next__())
10