首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

python 通过文本中的关键字匹配title的有关问题

2012-06-28 
python 通过文本中的关键字匹配title的问题Python codeurl[http://www.baidu.coml,http://www.google.

python 通过文本中的关键字匹配title的问题

Python code
url=["http://www.baidu.coml","http://www.google.com"]f=open("1.txt").read()lst=f.split()for x in url:   page=urllib2.urlopen(x)    soup=BeautifulSoup(page,fromEncoding='gb2312')    titletag=soup.title.string   for y in lst:        if y in  titletag:                print x


报错: if x in soup.titletag.string:
TypeError: 'in <string>' requires string as left operand

我想根据记事本中列出的关键字,来和l列表中url标题进行对比,如果发现记事本中的关键字在url的标题中,就将该url打印出来。假设我记事本中的关键字为“百度”,那么按照我的想法,应该打印www.baidu.com。报错肯定是我代码的问题,我想知道怎么写,错在哪?

[解决办法]
编码问题,titletag是unicode,而y是有编码的,把y解码后在运行就可以了
if y in titletag:
前面加一句
y = y.decode('gbk')

热点排行