What will be the output of the following Python code?
tuple1=(5,1,7,6,2) tuple1.pop(2) print(tuple1)
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
It will generate Attribute Error: 'tuple' object has no attribute 'pop' because tuple in immutable and it can't support pop function.