Report Bug
Qus :

What will be the output of the following Python code?

tuple1=(5,1,7,6,2)
tuple1.pop(2)
print(tuple1)

Qus

निम्नलिखित पायथन कोड का आउटपुट क्या होगा?

tuple1=(5,1,7,6,2)
tuple1.pop(2)
print(tuple1)


A. (5,1,6,2)
B. (5,1,7,6)
C. (5,1,7,6,2)
D. Error


Solution
D. Error



Explanation

It will generate Attribute Error: 'tuple' object has no attribute 'pop' because tuple in immutable and it can't support pop function.




Report Bug