我正在网站中搜索字符串并检查此字符串的位置是否在预期位置。我知道字符串从第182个字符开始,如果我打印temp,它甚至会告诉我它是182,但if语句表示182不是182。
f = urllib.urlopen(link)
#store page contents in 's'
s = f.read()
f.close()
temp = s.find('lettersandnumbers')
if (htmlsize == "197"):
#if ((s.find('lettersandnumbers')) == "182"):
if (temp=="182"):
print "Glorious"
doStuff()
else:
print "HTML not correct. Aborting."
else:
print htmlsize
print "File size is incorrect. Aborting."