लिस्ट में एक एलिमेंट (5) जोड़ने के लिए किस फंक्शन का उपयोग किया जाता है?<break-line><break-line>Which function is used to add an element (5) in the list?
निम्नलिखित कोड के लिए आउटपुट क्या होगा?<break-line><break-line>What will be output for the following code?<break-line><break-line><pre><code>import numpy as np
ary = np.array([1,2,3,5,8])
ary = ary + 1
print (ary[1])</code></pre>