2022-11-13 10:39:28 -08:00

6 lines
139 B
Python

$ source venv/bin/activate
(venv) $ python3
>>> file = open("phrases.txt") # Not fully Pythonic
>>> text = file.read()
>>> file.close()