问题遇到的现象和发生背景
html = rep.text
soup = BeautifulSoup(html, "lxml")
text = soup.find_all("script", type="text/javascript")[2].string
运行结果及报错内容
想听最后一行代码的详细解释,特别是[2].string在干吗?
我的解答思路和尝试过的方法
我想要达到的结果
求解释一下
html = rep.text
soup = BeautifulSoup(html, "lxml")
text = soup.find_all("script", type="text/javascript")[2].string
想听最后一行代码的详细解释,特别是[2].string在干吗?
求解释一下
就是 获取 soup.find_all("script", type="text/javascript") 返回的结果, 取第3个元素的文本。