How can I reverse a list in Python?

后端 未结 30 2654
既然无缘
既然无缘 2020-11-21 22:32

How can I do the following in Python?

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

I need to have the elements of a

30条回答
  •  我寻月下人不归
    2020-11-21 23:16

    Another solution would be to use numpy.flip for this

    import numpy as np
    array = [0, 10, 20, 40]
    list(np.flip(array))
    [40, 20, 10, 0]
    

提交回复
热议问题