स्ट्रिंग के मान का मूल्यांकन करने के लिए कौन सा function प्रयोग होता है?<break-line><break-line>The function used to evaluate the value of a string is……….
__________ function 1 से n तक की संख्या की एक श्रृंखला बनाता है।<break-line><break-line>The __________ function generates a sequence of numbers from 1 to n.
Python एक case sensitive भाषा है जब identifiers की बात आती है।<break-line><break-line>Python is a case sensitive language when dealing with identifiers.
निम्नलिखित कोड का आउटपुट क्या होगा?<break-line><break-line>What is the output of the following code?<pre><code>print( bool(0), bool(3.14159), bool(-3), bool(1.0+1j) )</code></pre>