diff --git a/Notes/01_Introduction/06_Files.md b/Notes/01_Introduction/06_Files.md index 7ca72bb..fb9bb9f 100644 --- a/Notes/01_Introduction/06_Files.md +++ b/Notes/01_Introduction/06_Files.md @@ -136,8 +136,8 @@ To read a file line-by-line, use a for-loop like this: ```python >>> with open('Data/portfolio.csv', 'rt') as f: - for line in f: - print(line, end='') + for line in f: + print(line, end='') name,shares,price "AA",100,32.20