将http://www.nw868.com/content/uploadfile/202307/f3cc1689041076.jpg http://www.nw868.com/content/uploadfile/202307/15601689041077.jpg http://www.nw868.com/content/uploadfile/202307/799b1689041077.jpg放入list中
时间: 2023-07-22 21:14:04 浏览: 118
你可以使用以下代码将这三个网址放入一个列表中:
```python
urls = [
'http://www.nw868.com/content/uploadfile/202307/f3cc1689041076.jpg',
'http://www.nw868.com/content/uploadfile/202307/15601689041077.jpg',
'http://www.nw868.com/content/uploadfile/202307/799b1689041077.jpg'
]
```
在这个示例中,我们创建了一个名为`urls`的列表,并将三个网址作为字符串元素添加到列表中。
你也可以逐步添加网址到空列表中:
```python
urls = [] # 创建一个空列表
# 逐步添加网址
urls.append('http://www.nw868.com/content/uploadfile/202307/f3cc1689041076.jpg')
urls.append('http://www.nw868.com/content/uploadfile/202307/15601689041077.jpg')
urls.append('http://www.nw868.com/content/uploadfile/202307/799b1689041077.jpg')
```
无论是一次性添加还是逐步添加,结果都是相同的:`urls`列表中存储了三个网址。你可以通过索引来访问和操作列表中的元素,例如 `urls[0]` 可以获取第一个网址。
阅读全文