निम्नलिखित कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following code?<pre><code>M = ['b' * x for x in range(4)]
print(M)</code></pre>
निम्नलिखित पाइथन कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following Python code?<pre><code>a = set('abc')
b = set('cdef')
print(a & b)</code></pre>
निम्नलिखित पाइथन कोड का परिणाम क्या है?<break-line><break-line>What is the output of the following Python code?<pre><code>list1 = [1, 3]
list2 = list1
list1[0] = 4
print(list2)</code></pre>
निम्नलिखित स्निपेट का परिणाम क्या है?<break-line><break-line>What is the output of the following snippet?<pre><code>num = (4, 7, 19, 2, 89, 45, 72, 22)
y = sorted(num)
z = [x for x in y if x % 2 != 0]
print(z)</code></pre>
निम्नलिखित स्निपेट का परिणाम क्या है?<break-line><break-line>What is the output of the following code snippet?<pre><code>print([i.lower() for i in 'HELLO'])</code></pre>