________ फ़ंक्शन मूल सरणी को संशोधित करता है और _________ फ़ंक्शन सरणी का एक नया उदाहरण बनाता है।<break-line><break-line>The ________ function modifies the original array and _________ function creates a new instance of the array.
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>for i in range(2.0):
print(i)</code></pre>
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following Python code?<pre><code>for i in range(int(2.0)):
print(i)</code></pre>