""" For + Range range -> range(start, stop, step) """ numeros = range(0, 100, 8) for numero in numeros: print(numero)