Python/basics.py
2020-02-05 14:00:03 +00:00

5 lines
83 B
Python

myfile = open("fruits.txt")
content = myfile.read(6)
myfile.close()
print(content)