使用python编写,已知info=【1,2,3,4,5】,请通过两种编程方法,将列表变成info【5,4,3,2,1】
时间: 2023-08-19 18:30:19 浏览: 97
Python库 | moto-1.3.15.dev142-py2.py3-none-any.whl
好的,根据你的要求,我将回答你的问题,以下是两种方法:
第一种方法是使用列表切片,代码如下:
```python
info = [1, 2, 3, 4, 5]
info = info[::-1]
print(info) # 输出 [5, 4, 3, 2, 1]
```
第二种方法是使用列表翻转函数,代码如下:
```python
info = [1, 2, 3, 4, 5]
info.reverse()
print(info) # 输出 [5, 4, 3, 2, 1]
```
以上是两种简单的方法,可以实现将列表倒序输出。希望能满足你的需求。
阅读全文