Question 40
Given a list L of integers, function sum_of_squares() returns the sum of the squares of each integer.
e.g., if L = [1,2,10], the sum of squares will be 1*1 + 2*2 + 10*10 = 105.
Complete the function by replacing each blank with a valid Python expression/statement.
Here is a sample run:
Note that your code needs to be syntactically correct to gain marks. You cannot use any semi-colon(;) and we will deduct marks if your answer is too long.