From adc48148d44641f0d49e838139d99dd5c2f89a47 Mon Sep 17 00:00:00 2001 From: David Avery Date: Wed, 5 Feb 2020 14:00:03 +0000 Subject: [PATCH] Coding exercise 45 --- basics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basics.py b/basics.py index 821a780..8dbe163 100644 --- a/basics.py +++ b/basics.py @@ -1,5 +1,5 @@ myfile = open("fruits.txt") -content = myfile.read() +content = myfile.read(6) myfile.close() print(content) \ No newline at end of file