link experiment
This commit is contained in:
14
Notes/06_Generators/00_Overview.md
Normal file
14
Notes/06_Generators/00_Overview.md
Normal 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.
|
||||
Reference in New Issue
Block a user