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