list1 के तीसरे पोजीशन पर 5 इन्सर्ट करने के लिए कौन से कमांड का प्रयोग करेंगे<break-line><break-line>To insert 5 to the third position in list1, we use which command?
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = [5, 3, 6, 2, 4, 0, 1]
del x[2:3]
print(x)</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following Python code?<pre><code>num = [1, 2, 3, 4]
num.append([5,6,7,8])
print(len(num))</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = [n*4 for n in range(3)]
print(m)</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = [24, 50, 37]
y = 24 in x
print(y)</code></pre>