From 9d1012159c835f7bf669c8c6cc06c022323cdc5a Mon Sep 17 00:00:00 2001 From: David Avery Date: Wed, 5 Feb 2020 13:52:26 +0000 Subject: [PATCH] Lesson 73 --- basics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/basics.py b/basics.py index d0bd046..821a780 100644 --- a/basics.py +++ b/basics.py @@ -1,4 +1,5 @@ myfile = open("fruits.txt") content = myfile.read() -print(content) +myfile.close() + print(content) \ No newline at end of file