Попробуйте, чтобы получить текст с этой страницы:
from bs4 import BeautifulSoup
import requests
url = "https://www.musica.com/letras.asp?letra=113"
soup = BeautifulSoup(requests.get(url).text, 'html5lib')
for items in soup.select_one("table[style='width:100%;margin:0px auto']").select("tr")[:-3]: #kicking out the last three blank rows
data = '\n'.join([item.get_text() for item in items.select("td p")])
print(data)
Вывод:
You can dance, you can jive
Having the time of your life
See that girl, watch that scene
Dig in the Dancing Queen