Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1fca335

Browse files
committed
Fix typo
1 parent 2f0ab9b commit 1fca335

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Notes/01_Introduction/06_Files.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ To read a file line-by-line, use a for-loop like this:
136136

137137
```python
138138
>>> with open('Data/portfolio.csv', 'rt') as f:
139-
for line in f:
140-
print(line, end='')
139+
for line in f:
140+
print(line, end='')
141141

142142
name,shares,price
143143
"AA",100,32.20

0 commit comments

Comments
 (0)