Question
2. What will be the output of below Python code? tuple1=(5,1,7,6,2) tuple1.pop(2) print(tuple1) a) Error h(5,1,6,2) c) (5,1,7,6) d) (5,1,7,6,2)
Question image 1