This will give you all the values under <tr> : bs=BeautifulSoup(data, "lxml") table_body=bs.find('tbody') rows = table_body.find_all('tr') ...
確定! 回上一頁