Report Bug
Qus :

What will be the output of the following code?

a=((0,2,3,4)[1:-2])
print(a)

Qus

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

a=((0,2,3,4)[1:-2])
print(a)


A. (3,)
B. (2, )
C. (1,)
D. (0,)


Solution
B. (2, )






Report Bug