list1 में एक तत्व (5) जोड़ने के लिए किस फ़ंक्शन का उपयोग किया जाता है?<break-line><break-line>Which function is used to add an element (5) in the list1?
__________ ऑपरेटर दिए गए आइटम्स की संख्या के लिए एक सूची को दोहराता है<break-line><break-line>__________ operator repeats a list for the given number of items.
निम्नलिखित पायथन कोड का आउटपुट क्या है?<break-line><break-line>What is the output of the following Python code?<pre><code>tuple1 = (5, 1, 7, 6, 2)
tuple1.pop(2)
print(tuple1)</code></pre>