What is the output of the following tuple operation-aTuple = (1, 2, 3, 4, 5) aTuple.pop(2) print(aTuple) *
(1, 2, 4, 5)
(1, 3, 4, 5)
3
Answers
Answered by
0
Explanation:
What is the output of the following tuple operation-aTuple = (1, 2, 3, 4, 5) aTuple.pop(2) print(aTuple) *
(1, 2, 4, 5)
(1, 3, 4, 5)
3
Answered by
0
Answer:
..........12345..........
Similar questions