url = 'https://info.sporttery.cn/football/info/fb_match_info.php?m=1010356' response = requests.get(url) soup = BeautifulSoup(response.text, 'html.parser') #/html/body/div[5]/div[5]/div[1]/div[1]/span #resultH = soup.select_one('#resultH').text #<span class="s-fc-blue" id="resultH">6胜0平4负</span> resultA = soup.select_one('#resultA').text #<span class="s-fc-blue" id="resultA">9胜0平1负</span> #resultHistory = soup.select_one('#resultHistory').text #<span class="s-fc-blue" id="resultHistory">1胜0平9负</span> #print(resultH) print(resultA)结果是什么
时间: 2023-02-09 14:02:06 浏览: 173
电子商务之价格优化算法:梯度下降:机器学习在价格优化中的角色.docx
这段代码使用 Python 中的 requests 库发送一个 GET 请求到 URL https://info.sporttery.cn/football/info/fb_match_info.php?m=1010356,然后使用 BeautifulSoup 解析返回的 HTML 文本。
阅读全文