In my soup object, I have a div tag with two nested span tags and need to grab the "750 mL"
from the first span and the "117"
from the second span.
two span tags inside a div
I'm able to get into the first span tag using :
soup.find('div', class_='other_details').find('span')
Unfortunately, I can't get into the second span tag as it shares a div and class with the first. Can anyone suggest a way to grab the second span tag?