我正在尝试在 Python 中找到某行,但我被卡住了。
这是我的代码:
import urllib2
response = urllib2.urlopen('http://pythonforbeginners.com/')
info = response.info()
html = response.read()
# do something
response.close() # best practice to close the file
if "x" in str(info):
print str(info)
raw_input()
我试图只用一行来显示服务器的类型。