def next_page(self): # 重构下一页网址 next_href = "http://cd.wenming.cn/wenmingchuangj/index_{}.shtml" # 构建下一页地址列表 next_url_list = [next_href.format(__(5)__) for url in range(1,11)] # 返回列表 return next_url_list
时间: 2024-04-25 12:26:26 浏览: 31
你需要填写括号中的数字,使得 `next_url_list` 列表中的元素分别为 `"http://cd.wenming.cn/wenmingchuangj/index_1.shtml"` 到 `"http://cd.wenming.cn/wenmingchuangj/index_10.shtml"`。因为 `range(1, 11)` 会生成一个从 1 到 10 的整数序列,所以你需要填写 `url`。因此,正确的代码应该是 `next_url_list = [next_href.format(url) for url in range(1,11)]`。
阅读全文