使用 Beautiful Soup 我试图提取下图中突出显示的数字。我能够定位和输出整个跨度类,但我只想要锚文本字符串
我如何告诉 Beautiful Soup 我只想要下一个子元素值?我期望输出为90NBHA138J2C255D431U
到目前为止我的尝试
target=soup.findAll('span',{'class':'data data_mpn'})
print target
我的目标字符串的图像
使用 Beautiful Soup 我试图提取下图中突出显示的数字。我能够定位和输出整个跨度类,但我只想要锚文本字符串
我如何告诉 Beautiful Soup 我只想要下一个子元素值?我期望输出为90NBHA138J2C255D431U
到目前为止我的尝试
target=soup.findAll('span',{'class':'data data_mpn'})
print target
我的目标字符串的图像