it1 = range(5) it2 = range(100,105) for a, b in zip(it1, it2): print(a) print('-' * 20) print(b)