标签:int print pre code python 倒序 color range pytho
num = [1,2,3,4,5,6,7,8,9] for i in range(0, num.__len__())[::-1]: print num[i]
python 倒序遍历数组
原文地址:https://www.cnblogs.com/wangjq19920210/p/13083419.html