नीचे दिए गए कोड स्निपेट में var का डेटा टाइप क्या होगा?<break-line><break-line>What will be the datatype of the var in the below code snippet?<pre><code>var = 10
print(type(var))
var = "Hello"
print(type(var))</code></pre>
निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following code snippet?<pre><code>a = [1,2,3,4,5,6,7,8,9]
a[::2] = 10,20,30,40,50,60
print(a)</code></pre>
A.ValueError: attempt to assign sequence of size 6 to extended slice of size 5