帮忙看一下这个怎么一直也过不了
主要是我不知道怎么在网站上找价格标签
import requests
from bs4 import BeautifulSoup
# 发送HTTP GET请求并获取HTML内容
url = 'https://finance.sina.com.cn/money/forex/hq/BTCBTCDOLLAR.shtml'
response = requests.get(url)
html_content = response.text
# 使用Beautiful Soup库解析HTML内容
soup = BeautifulSoup(html_content, 'lxml')
price_element = soup.find('span', class_='last-pri') # 根据HTML结构定位到价格元素
bitcoin_price = price_element.string # 提取价格值
print("当前比特币价格为:", bitcoin_price)