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
Posted: Tue Apr 12, 2022 10:21 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(list2) A. [7, 3, 1] B. [1, 7, 3] C. [2, 3, 1) D. [2, 1, 3]