Question 3: A list can be reversed using .reverse (). However, suppose we have a list whose entries might also be lists, and those lists can further contain lists, etc., and we want to reverse ALL the lists at all levéls. Write à recursive function called total reverse that does this, returning a new list with itself reversed and every list contained inside it reversed. Example output: >>> L1 = [1, [3, 4], 16, [21, 42, [65, 77]], 0] >>> L2 = total_reverse (L1) >>> print (L2) [0, [[77, 65], 42, 21], 16, [4, 3], 1]

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 8SA
icon
Related questions
Question

#python code
coud you provide comments and little explanation it would really help me to understand
thankyou

• Question 3: A list can be reversed using .reverse (). However, suppose we have a list whose
entries might also be lists, and those lists can further contain lists, etc., and we want to reverse ALL
the lists at all levels. Write å recursive function called total reverse that does this, returning a
new list with itself reversed and every list contained inside it reversed. Example output:
>>> L1 = [1, [3, 4], 16, [21, 42, [65, 77]], 0]
>>> L2 = total_reverse (L1)
%3D
>>> print(L2)
[0, [[77, 65], 42, 21], 16, [4, 3], 1]
Transcribed Image Text:• Question 3: A list can be reversed using .reverse (). However, suppose we have a list whose entries might also be lists, and those lists can further contain lists, etc., and we want to reverse ALL the lists at all levels. Write å recursive function called total reverse that does this, returning a new list with itself reversed and every list contained inside it reversed. Example output: >>> L1 = [1, [3, 4], 16, [21, 42, [65, 77]], 0] >>> L2 = total_reverse (L1) %3D >>> print(L2) [0, [[77, 65], 42, 21], 16, [4, 3], 1]
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Fibonacci algorithm
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning