Question: In Python, suppose you are given a nested list structure. This list item can take the form of a list, integer, string, or even a
In Python, suppose you are given a nested list structure. This list item can take the form of a list, integer, string, or even a float.
Your task is to create a recursive function called total_sums, which will find the integers and sum them up in that given structure.
Here is an example:
Given,
>>> stru = [ b , [ a , 5, 2, e , [ h , 12], e ] ]
>>> total_sum(stru)
>>> 19 #(5+2+12)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
