निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = [-5, -2, 0, 3, 4]
print([n*2 for n in m])</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following Python code?<pre><code>a={1:5,2:3,3:4}
a.pop(3)
print(a)</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = list(range(7,10))
print(m)</code></pre>
निम्नलिखित पाइथन कोड स्निपेट का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following Python code snippet?<pre><code>a = [0, 1, 2, 3]
for a[0] in a:
print(a[0])</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = [5, 4, 3, 2]
x.insert(1, 0)
print(x)</code></pre>