Python/basics.py

5 lines
83 B
Python
Raw Normal View History

2020-02-05 13:48:43 +00:00
myfile = open("fruits.txt")
2020-02-05 14:00:03 +00:00
content = myfile.read(6)
2020-02-05 13:52:26 +00:00
myfile.close()
2020-02-05 13:50:54 +00:00
print(content)