import urllib2 from bs4 import BeautifulSoup url = 'xxx' html = urllib2.urlopen(url) soup = BeautifulSoup(html, from_encoding = 'gbk') ...
確定! 回上一頁