# Complete the function to order the values in the list # if ascending is true then order lowest to highest # if ascending is false then order highest to lowest code example
Example: how to store sorted list into new variable in python
>>> numbers = [6, 9, 3, 1]
>>> numbers_sorted = sorted(numbers)
>>> numbers_sorted
[1, 3, 6, 9]
>>> numbers
[6, 9, 3, 1]