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 an array, but from the end to the beginning.
You can make use of the reversed function for this as:
reversed
>>> array=[0,10,20,40] >>> for i in reversed(array): ... print(i)
Note that reversed(...) does not return a list. You can get a reversed list using list(reversed(array)).
reversed(...)
list(reversed(array))
2.1m questions
2.1m answers
60 comments
57.0k users