可以使用Python的`[::-1]`切片操作符来实现列表的倒序遍历。示例如下:
```python
my_list = [1, 2, 3, 4, 5]
for item in my_list[::-1]:
print(item)
```
输出结果为:
5
4
3
2
1