Fix typo
This commit is contained in:
@@ -136,8 +136,8 @@ To read a file line-by-line, use a for-loop like this:
|
|||||||
|
|
||||||
```python
|
```python
|
||||||
>>> with open('Data/portfolio.csv', 'rt') as f:
|
>>> with open('Data/portfolio.csv', 'rt') as f:
|
||||||
for line in f:
|
for line in f:
|
||||||
print(line, end='')
|
print(line, end='')
|
||||||
|
|
||||||
name,shares,price
|
name,shares,price
|
||||||
"AA",100,32.20
|
"AA",100,32.20
|
||||||
|
|||||||
Reference in New Issue
Block a user