我正在尝试使用Python 3.3运行一些代码。 这是代码:
import urllib.request
html = urllib.request.urlopen("https://www.google.com/")
html_code = html.read()
html_code = str(html_code)
sind = html_code.index("<cite class=]\"vurls\">") + len("<cite class=\"vurls\">")
eind = html_code.index("</cite>")
ser1resurl = html_code[sind:eind]
print(ser1resurl)
由于urllib.request.open(google)
,它会出现403 Forbidden错误