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