Recorrer lista desde el final python

lista = [100, 200, 500, 2, 36]
for i in reversed(lista):
    print(i)
CuborubyPro