Pages
(Move to ...)
Home
Computer Science
Maths
Pedagogy and Teaching Methodology
GK and Current Affair
English
Our Apps
Books
Notification
▼
CLICK HERE TO JOIN US
Download and Install our Android App
Wednesday, 9 April 2025
1. Suppose L = [3, 4, 5, 20, 4, 5], What is L after L.pop()?
1. Suppose L = [3, 4, 5, 20, 4, 5], What is L after L.pop()?
[3,4,5,20,4]
[3,5,20,4,5]
[3,5,20,5]
Error
Ans:
1.
[3, 4, 5, 20, 4]
Explanation:
>>> L = [3, 4, 5, 20, 4, 5]
>>> L.pop()
5
>>> L
[3, 4, 5, 20, 4]
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment