निम्नलिखित List में फेरबदल करने के लिए सही command क्या है?<break-line><break-line>What is the correct command to shuffle the following list?<pre><code>fruit = ['apple', 'banana', 'papaya', 'cherry']</code></pre>
Correct Answer: Tuples are immutable, lists are mutable
Q8.
निम्नलिखित कोड का आउटपुट क्या है:<break-line><break-line>What is the output of the following code:<pre><code>L = ['a','b','c','d']
print("".join(L))</code></pre>
निम्नलिखित प्रोग्राम का आउटपुट क्या है:<break-line><break-line>What is the output of the following program:<pre><code>i = 0
while i < 3:
print(i)
i = i + 1
print(i + 1)</code></pre>