from bs4 import BeautifulSoup

r = requests.get("********************")

soup = BeautifulSoup(r.content, "html.parser")

class = soup.find_all("div", class_ = "word")

このままだと、スクレイピングで該当したものがhtmlのタグに囲まれたままリストに保管されます。

タグは必要がないので、タグを削除した状態でリスト形式で保管したいです。