Report Bug
Qus :

What is the output of following code

x = [1, 2, 3]
print(x[1:10])

Qus

निम्नलिखित कोड का आउटपुट क्या होगा?

x = [1, 2, 3]
print(x[1:10])


A. Error
B. [2, 3]
C. [1, 2, 3]
D. []


Solution
B. [2, 3]



Explanation
<p><br></p>



Report Bug