3) What is the output of the following python code? list2= [2,4,7,1,3,1] list2.pop(1) list2.pop(1) list2.remove(1) print
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
3) What is the output of the following python code? list2= [2,4,7,1,3,1] list2.pop(1) list2.pop(1) list2.remove(1) print
3) What is the output of the following python code? list2= [2,4,7,1,3,1] list2.pop(1) list2.pop(1) list2.remove(1) print(list2) A. [7, 3, 1] B. [1, 7, 3] C. [2, 3, 1) D. [2, 1, 3]
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!