刚开始接触 bs4 的时候,我也很迷茫,觉得 string 属性和 text 属性是一样的,不明白为什么要分成两个属性。
html = '<p>hello word</p>' soup = BeautifulSoup(html, 'lxml') p = soup.p print(p.string) # hello word print(p.text) # hello word
刚开始接触 bs4 的时候,我也很迷茫,觉得 string 属性和 text 属性是一样的,不明白为什么要分成两个属性。
html = '<p>hello word</p>' soup = BeautifulSoup(html, 'lxml') p = soup.p print(p.string) # hello word print(p.text) # hello word
内容版权声明:除非注明,否则皆为本站原创文章。