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