निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = [5, 4, 3, 2, 1]
x.reverse()
print(x)</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = ['July', 'September', 'December']
n = m[1]
print(n)</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = {'m', 'n', 'o', 'p'}
if 'n' in m:
print('n', end=' ')</code></pre>
निम्नलिखित स्टेटमेंट्स का आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = [25, 34, 70, 63]
n = str(m[1]) + str(m[2])
print(n)</code></pre>
निम्नलिखित पाइथन कोड का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following Python code?<pre><code>points = [[1, 2], [3, 1.5], [0.5, 0.5]]
points.sort()
print(points)</code></pre>