python 倒序遍历数组

num = [1,2,3,4,5,6,7,8,9]
for i in range(0, num.__len__())[::-1]:
    print num[i]
原文地址:https://www.cnblogs.com/wangjq19920210/p/13083419.html