Python BeautifulSoup类函数返回全文,如何拆分以便每个段落都有明确的定义

时间:2017-06-10 12:14:10

标签: python web-scraping beautifulsoup

我正在做一个soupFindALL,它返回完整的文本体。例如 网站示例: 植物aaa类型aa 植物bb b型 植物cccc类型ccc

<table class="neither">涵盖了上述所有文字 <td class="neither--top">是每个标签,因此我不知道如何单独获得这三个结果。

以下脚本是我运行的

for item_e in soup.findAll('table', {'class' : 'neither'}):
        Plant = item_e.get_text(strip=True)

这将返回整个文本正文: Plant aaa TypeaaPlant bb TypebPlant cccc Type cc

我希望三个项目之间有明确的区别,例如,它可以在同一行 Plant aaa Typeaa Plant bb Typeb Plant cccc Type cc

我该怎么做?

0 个答案:

没有答案