sorted function in Python

This function does not sort in place. In order to sort the list - you should output the function invocation.
Example:

my_list = [15, 6, 7, 8, 35, 12, 14, 4, 10]

print(f"Ints: {my_list}")

print("Sorting...")
print(f"Sorted Ints: {sorted(my_list)}")
Output:
Ints: [15, 6, 7, 8, 35, 12, 14, 4, 10]
Sorting...
Sorted Ints: [4, 6, 7, 8, 10, 12, 14, 15, 35]