extracting element and insert a space

前端 未结 3 932
挽巷
挽巷 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 03:48

    One may want to use also with strip argument

    bs = BeautifulSoup("thisis  example")
    print(bs.get_text())  # thisis  example
    print(bs.get_text(separator=" "))  # this is   example
    print(bs.get_text(separator=" ", strip=True))  # this is example
    

提交回复
热议问题