Python Program to Find Sum of Tuple Items

Write a Python Program to find the sum of all the items in a tuple. Here, we used the Tuple sum function to return the sum of all tuple items. # Tuple Sum of All Items numTuple = (20, 40, 65, 75, 80, 220) print(“Tuple Items = “, numTuple) tupleSum = sum(numTuple) print(“\nThe Sum of … Read more