如何在Python中反转列表?

[亡魂溺海] 提交于 2020-08-16 16:58:50

问题:

How can I do the following in Python? 如何在Python中执行以下操作?

array = [0, 10, 20, 40]
for (i = array.length() - 1; i >= 0; i--)

I need to have the elements of an array, but from the end to the beginning. 我需要一个数组的元素,但是要从头到尾。


解决方案:

参考一: https://stackoom.com/question/GX0S/如何在Python中反转列表
参考二: https://oldbug.net/q/GX0S/How-can-I-reverse-a-list-in-Python
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!