निम्नलिखित object का data type क्या है?<break-line><break-line>What is the data type of the following object?<pre><code>A = [ 5, “abc”, 3.2, 6 ]</code></pre>
variables के changing values की जाँच को stepping कहा जाता है।<break-line><break-line>The examination of changing values of variables is called stepping.
निम्नलिखित कोड का आउटपुट क्या होगा?<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>