Get startedGet started for free

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

This exercise is part of the course

Intermediate Julia

View Course

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise