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
Cet exercice fait partie du cours
Intermediate Julia
Exercice interactif pratique
Passez de la théorie à la pratique avec l’un de nos exercices interactifs
Commencer l’exercice