How would I produce a while loop, to double and therefore change the numbers in the following list?
Thank you.
numberList = [3, 5, 6, 2, 1, 5, 7, 4]
This was my attempt
numberList = [3, 5, 6, 2, 1, 5, 7, 4]
while numberList == numberList:
numberList == numberList * 2
print (numberList)
break