Write a program to find the sum of all the elements of a tuple by using built-in program.
Answers
Answered by
1
Answer:
first convert tulle into list .
flatten its each list element using map()
perform summation of each using sum()
and again employ sum() for overall summation of resultant list
Similar questions