यदि arr नाम की एक सूची में 5 तत्व हैं, तो दूसरा तत्व कैसे प्राप्त करें?<break-line><break-line>Suppose a list with name arr contains 5 elements. You can get the 2nd element from the list using:
key और value के रूप में data store करने के लिए कौन सा data type प्रयोग किया जाता है?<break-line><break-line>In order to store values in terms of key and value we use what core data type.
निम्न में से किस data type में duplicate items की अनुमति नहीं होती?<break-line><break-line>In which of the following data type, duplicate items are not allowed?
निम्न कोड का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>ms = ('A', 'D', 'H', 'U', 'N', 'I', 'C')
print( ms[1:4] )</code></pre>