link experiment

This commit is contained in:
David Beazley
2020-05-26 09:21:19 -05:00
parent 9aec32e1a9
commit b5244b0e61
24 changed files with 4265 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
# Overview
A simple definition of *Iteration*: Looping over items.
```python
a = [2,4,10,37,62]
# Iterate over a
for x in a:
...
```
This is a very common pattern. Loops, list comprehensions, etc.
Most programs do a huge amount of iteration.