extracting element and insert a space

前端 未结 3 933
挽巷
挽巷 2021-02-04 03:29

im parsing html using BeautifulSoup in python

i dont know how to insert a space when extracting text element

this is the code:

import BeautifulSo         


        
3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-04 04:02

    If your version of Beautifulsoup does not have getText then you could do this:

    In [26]: ' '.join(soup.findAll(text=True))
    Out[26]: u'this is example'
    

提交回复
热议问题