Python中列表的逆序遍歷怎么實(shí)現(xiàn)

小億
103
2024-03-06 12:27:52

在Python中,可以使用reversed()函數(shù)來(lái)對(duì)列表進(jìn)行逆序遍歷。這個(gè)函數(shù)會(huì)返回一個(gè)迭代器,可以使用for循環(huán)來(lái)遍歷這個(gè)迭代器,實(shí)現(xiàn)列表的逆序遍歷,示例如下:

my_list = [1, 2, 3, 4, 5]

for item in reversed(my_list):
    print(item)

輸出結(jié)果為:

5
4
3
2
1

0