下面是关于如何让Python列表倒序输出的攻略:
方法1:使用reverse()方法
- step 1: 定义一个普通的列表
lis = [1, 2, 3, 4, 5]
- step 2: 使用
reverse()
方法对整个列表进行倒序排列,并保存到一个新的列表中
new_list = lis[::-1]
- step 3:打印出新的列表, 即为正序的列表的倒序排列
print(new_list)
示例1:
```python
# 定义一个列表
fruits = ['apple', 'banana', 'kiwi', 'orange', 'pear']
# 将列表反向输出
fruits.reverse()
# 打印倒序后的列表
print(fruits)
运行结果:
['pear', 'orange', 'kiwi', 'banana', 'apple']
示例2:
python
# 定义一个列表
nums = [1, 3, 5, 7, 9]
# 将列表反向输出
nums.reverse()
# 打印倒序后的列表
print(nums)
运行结果:
[9, 7, 5, 3, 1]
```
方法 2:使用切片(slice)的方式
- step 1:定义一个列表
lis = [1, 2, 3, 4, 5]
- step 2:使用
[::-1]
的方式从列表的末尾开始向前输出, 步长为-1
new_list = lis[::-1]
- step 3:打印出新的列表, 即为正序的列表的倒序排列
print(new_list)
示例1:
```python
# 定义一个列表
fruits = ['apple', 'banana', 'kiwi', 'orange', 'pear']
# 使用[::-1]的方式对列表进行倒序排列
new_list = fruits[::-1]
# 打印倒序后的列表
print(new_list)
运行结果:
['pear', 'orange', 'kiwi', 'banana', 'apple']
示例2:
python
# 定义一个列表
nums = [1, 3, 5, 7, 9]
# 使用[::-1]的方式对列表进行倒序排列
new_list = nums[::-1]
# 打印倒序后的列表
print(new_list)
运行结果:
[9, 7, 5, 3, 1]
```
希望这些示例能够对你有所帮助。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python让列表倒序输出的实例 - Python技术站