如何在Python上运行.read()时找到一个字符串?

时间:2013-11-27 02:17:54

标签: python string locate

我正在使用urllib2

try:
    msmalvo = urllib2.urlopen(website)
except URLError as e:
    msmalvo = e

if msmalvo.code == 200:
    if msmalvo.read() == '<head>':
        print 'Exits!'

    else:
        print 'Don't exist'

else:
    print ' '
    print msmalvo.code, ':/'

这个想法是确认在页面的源代码中找到了字符串“\ head /”。 我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

简单地说:

'<head>' in msmalvo.read()

而不是:

msmalvo.read() == '<head>'