我需要找到一个单词的匹配项,例如:
在网络https://www.georgetown.edu/中找到所有单词“ Learn” (结果:4个字)(您可以按CTRL + F进行搜索并看到它)
我有我的Python代码,但计数匹配为3! 如果我再找一个字,结果会少一个或多一个
import requests
from bs4 import BeautifulSoup
import re
page = requests.get("https://www.georgetown.edu/")
soup = BeautifulSoup(page.text, 'html.parser')
solo_body = soup.body
limpiar_body = solo_body.text
contar_coincidencias = (limpiar_body.count("learn"))
print(contar_coincidencias)
实际上使用Python3,“ find_all”对我不起作用。