What is the possible output of the given code
segment:
L=[1,2,3,4,5)
L.pop()
print(L)
Answers
Answered by
0
Answer:
The output would be [1, 2, 3, 4]
Attachments:
Similar questions