如何使用Beautiful soup定位下一个子元素文本?

时间:2013-08-19 10:39:50

标签: beautifulsoup

使用美丽的汤我试图提取下图中突出显示的数字。我能够定位和输出整个span类,但我只想要那个锚文本字符串

我怎么能告诉美丽的汤我只想要下一个子元素值?我期待输出 90NBHA138J2C255D431U

到目前为止我的尝试

target=soup.findAll('span',{'class':'data data_mpn'})
print target

我的目标字符串的图片 Target

1 个答案:

答案 0 :(得分:2)

你应该可以这样做:

soup.find('span', id='firstProductCode').find('a').string