निम्नलिखित कोड का परिणाम क्या है ?<break-line><break-line>What is the output of the following code ?<pre><code>y = "I love Python"
y[3] = 's'
print(y)</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line>What is the output of the following code ?<break-line><pre><code>min(max(False,-3,-4), 2,7)</code></pre>
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following code ?<pre><code>t=(2, 3, 4, 3.5, 5, 6)
print(sum(t) + t.count(2))</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code ?<pre><code>def sayHello():
print("Hello World!")
sayHello()
sayHello()</code></pre>