soup = BeautifulSoup(html,"html.parser") 

html=soup.select("table a")

for k in html:
    print(k.string)
    print(k['href'])

 

相关文章:

  • 2021-12-14
  • 2022-02-11
  • 2021-12-03
  • 2022-02-07
  • 2022-12-23
  • 2021-08-26
  • 2021-11-17
猜你喜欢
  • 2021-07-31
  • 2022-01-22
  • 2021-11-17
  • 2022-01-13
  • 2021-12-27
  • 2022-01-16
相关资源
相似解决方案