Question: Write a function in python programming language that will reverse a general list. For example, if an input is (A (B C (D E)) F),
Write a function in python programming language that will reverse a general list.
For example, if an input is (A (B C (D E)) F), output is (F ((E D) C B) A).
Please note that any built-in/pre-defined function, e.g., reverse, cannot be used in your answer.
Please DO NOT hard-code any input values, output values in your code.
Please submit a screenshot of where your code got compiled, executed, showing the execution result
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
