Aan de slagGa gratis aan de slag

Loops and enumerate

Now that you've built a for loop which can iterate over a vector, let's extend this for loop using the enumerate function to return both the index and the value of everything inside the vector stock_tickers.

Keep in mind that for every element of stock_tickers we want to print the index, followed by a space, followed by the value.

Deze oefening maakt deel uit van de cursus

Intermediate Julia

Cursus bekijken

Oefeninstructies

  • Use enumerate to print the corresponding index of each value to the console.

Praktische interactieve oefening

Probeer deze oefening eens door deze voorbeeldcode in te vullen.

# Loop over stock_tickers printing the index and item
for (____, ____) in ____(stock_tickers)
	println(____, " ", ____)
end
Code bewerken en uitvoeren