Python/basics.py

4 lines
78 B
Python
Raw Normal View History

2020-02-05 14:15:10 +00:00
with open("fruits.txt") as myfile:
2020-02-05 14:09:20 +00:00
content = myfile.read()
2020-02-05 13:52:26 +00:00
2020-02-05 14:15:10 +00:00
print(content)