I\'ve got many table rows like this:
100 200 2条回答 离开以前 (楼主) 2021-01-01 16:16 soup = BeautifulSoup(html) try: value = soup.find('input', {'id': 'xyz'}).get('value') except: pass 0 讨论(0) 查看其它2个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
soup = BeautifulSoup(html) try: value = soup.find('input', {'id': 'xyz'}).get('value') except: pass