Python: List: List Reverse

Write a function that a list and return another lists where the order of values is revered.


list_reverse([5, 2, 1]) -> [1, 2, 5]
list_reverse([]) -> []

Test 1    

Test 2    

Test 3    

Test 4