如何在python中倒序遍历数组

num = [5,9,10,23,89]
for i in range(0, num.__len__())[::-1]:
    print num[i]

    原文作者:倾城琉璃
    原文地址: https://blog.csdn.net/qq_36449202/article/details/71474390
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞