The question is ask the user for 20 numbers one at a time, saves the numbers in list, and then printsa 2 column table with each number in the list entered in the first column and its square root in the second column. Each column should be 6 characters wide and the values in each column should have their decimal points aligned 3 places after the decimal point. i do not know how to do this only think i did is.
x = numbers
myList = []
for i in range(20):
myList.append(input("Enter a number: "))
print(myList[i],math.sqrt(x))
:(