फ़ंक्शन द्वारा .......... इंटरवल का मान जनरेट किया जाएगा<break-line><break-line>What is the interval of the value generated by the function<pre><code>import random
random.random()</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या है?<break-line><break-line>What is the output of the following Python code?<pre><code>def power(x, y=2):
r = 1
for I in range(y):
r = r * x
return r
print(power(3))
print(power(3, 3))</code></pre>
निम्नलिखित में से कौन से पायथन में वैध स्ट्रिंग मैनिपुलेशन फ़ंक्शन हैं?<break-line><break-line>Which of the following are valid string manipulation functions in Python?
निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 18
def nop():
print(m)
nop()</code></pre>