Question: Write a function sumofSquares(inlist) that computes the sum of the squares of the numbers in the inList and returns the result. Make sure to write

Write a function sumofSquares(inlist) that computes the sum of the squares of the numbers in the inList and returns the result. Make sure to write your code so that it works no matter how many items are in the list. Example: sumofSquares ([2, 3, 5, 7, 10]) returns 187 (because 4 + 9 + 25 + 49 + 100 = 187)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
