Answer:
list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
counter = 0
lenlist = len(list) - 1
while counter < lenlist :
num = list [lenlist]
squ = num * num
print (squ)
counter += 1
Step-by-step explanation:
as it goes through the list, it takes the element with that index and squares it, printing the squared number. it then increments the counter and starts again with the next element in the list.