From 1fca335bc73c46eaebce9f38789bcce7ec463aad Mon Sep 17 00:00:00 2001 From: David Beazley Date: Fri, 29 May 2020 20:33:55 -0500 Subject: [PATCH] Fix typo --- Notes/01_Introduction/06_Files.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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