निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>t = (1, 2, 4, 3)
t[1:3]</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>a = (1, 2)
b = (3, 4)
c = a + b
print(c)</code></pre>