निम्नलिखित स्टेटमेंट्स के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = 2
for n in range(3, 15, 5):
n += m + 2
print(n)</code></pre>
निम्नलिखित का आउटपुट क्या है?<break-line><break-line>What is the output of the following?<pre><code>while range(1, 7, -1):
if n == 2:
continue
print(n)</code></pre>
पायथन भाषा में कोड के ब्लॉक को परिभाषित करने के लिए निम्न में से किसका प्रयोग किया जाता है?<break-line><break-line>Which of the following is used to define a block of code in Python language?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>i = 4
while True:
if i%0O7 == 0:
break
print(i)
i += 1</code></pre>