Hey so I am trying to fit the entire text of the Odyssey into a string like this
with open('odyssey.txt','r') as file:
odysseytext = file.read().replace('\n', '')
print(odysseytext)
But when I print it out I am only getting the first 598261 characters (checked with len()) Does anyone know why this is happening or how to create a string with a very large amount of text? Thanks