print('Hello world!')
NI = int(input("Ingresa numero inicial: "))
NF = int(input("Ingresa numero final: "))
Salto = int(input("Ingresa el salto (por ejemplo 1): "))
numeros = list(range(NI, NF +1, Salto))

print("Numero inicial es:", NI)
print("Numero final es:", NF)
print("Salto:", Salto)
print("Numeros en el rango:", numeros)
print("Cantidad de numeros:", len(numeros))
print("La suma es", sum(numeros))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: