write a python program to find the sum of list values without using built in functions
Answers
Answered by
6
Answer:
Sum of numbers in the list is required everywhere. Python provide an inbuilt function sum() which sums up the numbers in the list. Syntax: sum(iterable, start) iterable : iterable can be anything list , tuples or dictionaries , but most importantly it should be numbers.
Answered by
64
Answer:
Sum of numbers in the list is required everywhere. Python provide an inbuilt function sum() which sums up the numbers in the list. Syntax: sum(iterable, start) iterable : iterable can be anything list , tuples or dictionaries , but most importantly it should be numbers.
if it helps you Mark this as brainlist..!!
Similar questions