[Solved]-Python 3 Write Function Accept List Return Sum Numbers Example X 10 15 20 12 Sumoflist X W Q37272664
In python 3,
Write a function that will accept a list and return the sum ofall the numbers.
Example:
x=[10,15,20,12]
sumOfList(x) would return 57
Expert Answer
Answer to In python 3, Write a function that will accept a list and return the sum of all the numbers. Example: x=[10,15,20,12] su… . . .
OR

