Bagaimana perjalanan daftar Invertida di Python

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