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