soup = BeautifulSoup(html, 'html.parser') dt = soup.find_all('dt') # 注意find_all返回一个list for i in dt: if i.string == 'Biosample ...
確定! 回上一頁