question 4 use a list comprehension to create a list of squared numbers (n*n). the function receives the variables start and end, and returns a list of squares of consecutive numbers between start and end inclusively. for example, squares(2, 3) should return [4, 9].