1

我正在尝试从 html 文本中搜索一个单词(即元)并从该单词的位置开始打印以下 20 个字符。

以下代码不返回任何内容:

import os,sys,urllib.request
url = "http://www.google.com/"
req = urllib.request.Request(url)
response = urllib.request.urlopen(req)
html = response.read()
html2 = html.decode("windows-1252")
b2='meta'
position=html2.index(b2)
if b2 in html2:
    print(html2[position:20])
4

2 回答 2

0

只需将您的代码更改为:

print(html2[position: position + 20])
于 2013-03-14T09:40:54.667 回答
0

print(html2[position : position + 20])在最后一行尝试。

于 2013-03-14T09:41:17.120 回答