- 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 1 (12.34 KiB) Viewed 28 times
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
-
- Site Admin
- Posts: 899603
- 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]