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-21 14:27:19 浏览: 57
在代码中的 `__(5)__` 处应填入一个数字,用于构造下一页的网址。因为 `range(1,11)` 返回的是从 1 到 10 的整数序列,所以这里应该填入一个变量,使得最终结果为从 1 到 10 的整数序列。因此,这里应该填入 `url`,即 `next_href.format(url)`。完整的代码如下:
```python
def next_page(self):
# 重构下一页网址
next_href = "http://cd.wenming.cn/wenmingchuangj/index_{}.shtml"
# 构建下一页地址列表
next_url_list = [next_href.format(url) for url in range(1,11)]
# 返回列表
return next_url_list
```
阅读全文