2
幾個月進入python,並且無法從使用BeautifulSoup的表格中獲取一些信息,我們將不勝感激。我沒有收到任何錯誤代碼,只是從表中沒有收到任何數據。美麗的湯無法從表格中獲取信息
import bs4 as bs
import requests
resp = requests.get('https://www.thestreet.com/markets/gainers.html')
soup = bs.BeautifulSoup(resp.text, "lxml")
table = soup.find('table', {'id': 'nyseData'})
tickers = []
for row in table.findAll('tr')[1:]:
ticker = row.findAll('td')[1].text
tickers.append(ticker)
任何幫助非常感謝!