我有这个代码:
import urllib
from bs4 import BeautifulSoup
url = 'http://www.brothersoft.com/synthfont-159403.html'
pageHtml = urllib.urlopen(url).read()
soup = BeautifulSoup(pageHtml)
for a in soup.select('div.Updated.coLeft ul a[href]'):
print a.string
但它给了我这个输出:
Kenneth Rundt
我需要的是更新后的 coleft 类中的全部信息。我该怎么办?