我正在尝试从 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])