What will you see on the next line? > myList =[5, 6, 10, 6, 32]
>>> myList.remove(6)
>>> myList
A)[5, 10, 6, 32]
B)[5, 10,32]
C) An error statement because no element has an index of 6.
D)An error statement since there are two values of 6 in the list.

Solved
Show answers

Ask an AI advisor a question