Python/basics.py
2020-02-05 13:52:26 +00:00

5 lines
82 B
Python

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