Skip to content

Commit 1ad6c33

Browse files
committedMay 30, 2020
Typo
1 parent 10074ad commit 1ad6c33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Notes/02_Working_with_data/04_Sequences.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ The `zip` function takes multiple sequences and makes an iterator that combines
249249
```python
250250
columns = ['name', 'shares', 'price']
251251
values = ['GOOG', 100, 490.1 ]
252-
pairs = zip(a, b)
252+
pairs = zip(columns, values)
253253
# ('name','GOOG'), ('shares',100), ('price',490.1)
254254
```
255255

0 commit comments

Comments
 (0)
Please sign in to comment.