85.9k views
4 votes
What is the output?

listC=[3, 2.5, 10]
listC.pop()
print(listC)

O There is no output because there is an error in the program.

O [2.5, 3, 10]

OI

O [3, 2.5]

1 Answer

6 votes

Answer: [3, 2.5]

Explanation:

User Joseph Joseph
by
7.6k points