IDNLearn.com is your go-to resource for finding expert answers and community support. Discover prompt and accurate answers from our community of experienced professionals.

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]


Sagot :

Answer: I think its A [9, 3.5]

Explanation: