Python/basics.py

4 lines
81 B
Python
Raw Normal View History

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