我想提取這是在給定的快照一個特定區間的文本。我無法通過它的類屬性找到跨度。我已附加了要提取的數據的html源(快照)。 有什麼建議嗎?按類查找範圍並提取其內容
import bs4 as bs
import urllib
sourceUrl='https://www.pakwheels.com/forums/t/planing-a-trip-from-karachi-to-lahore-by-road-in-feb-2017/414115/2'
source=urllib.request.urlopen(sourceUrl).read()
soup=bs.BeautifulSoup(source, 'html.parser')
count=soup.find('span',{'class':'number'})
print(len(count))
看到圖像:
仍然沒有工作 –