import mechanize
br = mechanize.Browser()
br.open("---------")
response1 = br.follow_link(text_regex=r"cheese\s*shop", nr=1)
print(br.title())
print(response1.geturl())
print(response1.info())
print(response1.read())
当我尝试使用上面的代码时,出现错误:
UnboundLocalError:赋值之前引用了本地变量'f'
当然,我已经更改了网址。 谢谢。