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
Diese Übung ist Teil des Kurses
Intermediate Julia
Interaktive Übung
In dieser interaktiven Übung kannst du die Theorie in die Praxis umsetzen.
