How to read love.txt

--Originally published at Just A Turtle Coding.

To use saved variables you have to use an open function.

In: http://www.pythonforbeginners.com/files/reading-and-writing-files-in-python you could have a better explanation of how to to this, since it’s a pretty complicated topic.

Files can be either binary or text and the way to open them is: file_object = open(filename, mode) where file_object is the variable to put the file object.