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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!