adiaz090706 adiaz090706 08-01-2021 Computers and Technology contestada what will you see on the next line after the following lines of code? >>> aList = [9, 2, 3.5, 2] >>> aList.remove(2) >>> aList [9, 3.5] [9, 3.5, 2] [9, 2, 3.5, 2]