I am trying to learn text processing. And using nltk. Trying to follow the NLTK book. When I try to read a text, it is reading it a little different.
import requests
url = "http://www.gutenberg.org/files/2554/2554-0.txt"
response = requests.get(url)
response.text[:25]
How can I read the text without the highlighted part in the image uploaded.