Coding exercise 45

This commit is contained in:
David Avery 2020-02-05 14:00:03 +00:00
parent 9d1012159c
commit adc48148d4

View File

@ -1,5 +1,5 @@
myfile = open("fruits.txt") myfile = open("fruits.txt")
content = myfile.read() content = myfile.read(6)
myfile.close() myfile.close()
print(content) print(content)