python用for循环反转列表_四种Python 列表反转显示方法|python3教程|python入门|python教程...
https://www.xin3721.com/eschool/python.html第一种,使用reversed函数,reversed返回的结果是一个反转的迭代器,我们需要对其进行list转换listNode=[1,2,3,4,5]newList=list(reversed(listNode))print(newList)#结果[5,4,3,2,1]第二种,使用sorted函数,sorted是排