Python/basics.py
2020-02-05 13:50:54 +00:00

4 lines
81 B
Python

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