Just loop through all the <strong> tags and use next_sibling to get what you want. Like this: for strong_tag in soup.find_all('strong'): ...
確定! 回上一頁