1

我正在使用 Python 和 Beautiful Soup 解析 HTML 网页(不过,我对其他解决方案持开放态度)。我想知道是否可以基于一行 HTML 解析文件,即get the td tag from line3. 这可能吗?

4

1 回答 1

1

考虑这个例子:http://www.pythonforbeginners.com/python-on-the-web/web-scraping-with-beautifulsoup/有href的逐行处理和匹配(你需要td)

另外考虑:soup.find_all("td", limit=3)

于 2013-10-16T01:01:38.593 回答