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

4 lines
78 B
Python

with open("fruits.txt") as myfile:
content = myfile.read()
print(content)