Instruction
Perfect! How about Question 2?
Exercise
Write a function named make_symmetrical(input_list) that returns a new list constructed in the following way:
- Takes all the elements from the input list and stores them in a copy.
- Appends all but the last element from the input list to the copy, in reverse order.
The function shouldn't modify the original list.
For example, given the list: [1, 2, 3], the function should return [1, 2, 3, 2, 1].



