0

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

我如何告诉 Beautiful Soup 我只想要下一个子元素值?我期望输出为90NBHA138J2C255D431U

到目前为止我的尝试

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

我的目标字符串的图像 目标

4

1 回答 1

2

你应该能够做到:

soup.find('span', id='firstProductCode').find('a').string
于 2013-08-19T10:41:31.450 回答