ComeçarComece de graça

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 exercício faz parte do curso

Intermediate Julia

Ver curso

Exercício interativo prático

Transforme a teoria em ação com um de nossos exercícios interativos

Começar o exercício