當我使用BeautifulSoup 4解析http://www.madcamcnc.com/sales.html,然後查找表標記時,它會找到2.當我查看頁面的html時,會看到10個表。爲什麼BeautifulSoup不會全部返回10?爲什麼BeautifulSoup找不到所有標籤?
from bs4 import BeautifulSoup
import urllib2
page = urllib2.urlopen("http://www.madcamcnc.com/sales.html")
soup = BeautifulSoup(page)
print len(soup.findAll('table'))
它返回多少? – 2014-01-15 04:58:09
這個問題似乎是脫離主題,因爲它是關於看錯網頁。 – MattDMo