Files
python/reference/concepts/indexing.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

637 B

Indexing

TODO: ADD MORE

  • the "rows" and "columns" of this exercise need to be retrieved from a list of lists via index matrix
  • for iterables, individual items can be accessed with stringname[x] notation. Negative numbers start to count backwards phone-number
  • finding a value by key in a dictionary using <dictionary name>[<key name>] The example uses passed in move arguments as keys to look up corresponding values (method names) for moving the robot in the instructions dictionary. robot-simulator