Files
python/reference/concepts/iteration.md
Michael Morehouse 29478dd68c Organize concepts, eliminate duplication
* Stage 1

* Finish restructuring, add checkboxes.

* Minor format fixes

* fixing broken link

* fixing broken link

* fixing README link

* Fix multiples bad links

* Fix links in reference/concepts/keywords/README.md

* Correcting list description
2021-01-29 11:14:36 -05:00

604 B

Iteration

TODO: ADD MORE

  • the passed-in string is iterated over, and split into rows. The row lists are iterated over and split into elements matrix
  • the example uses a for loop to iterate through the letters of the passed-in commands string and looks up the corresponding values in a dictionary, so that the appropriate methods can be called to move the robot. robot-simulator
  • the for ... in concept is useful to loop over the lists variable-length-quantity