Python noobie 在这里。当我使用像“see spot run”这样的普通字符串时,我可以让“in”正常工作,但这并没有给我我对 html 页面的期望。它总是返回“未找到”。
import urllib2
response = urllib2.urlopen('http://www.cnn.com/')
searchTerm = "center"
if searchTerm in response:
print("found")
else:
print("not found")