write the following python function: asquare(k) takes k as a parameter and returns a list containing squares of first k integers. asquare(5) will return the list [1, 4, 9, 16, 25] print that list