I have a simple function that will print text. I call the function the first time, and the text from the file is read. I call it again, but the text is not read.
text = open ("lorem.txt")
def recite():
print(text.read())
recite() Lorem ipsum dolor sit amet...
recite()
recite()