ComenzarEmpieza gratis

Ranges - iteration

You've taken in a lot of information about ranges. Let's try to put some of it into practice. If we were to iterate over the range as shown below using a for loop, how many values would we print to the console?

my_range = 1:2:10

for value in my_range
    println(value)
end

Este ejercicio forma parte del curso

Intermediate Julia

Ver curso

Ejercicio interactivo práctico

Pon en práctica la teoría con uno de nuestros ejercicios interactivos

Empezar ejercicio