Report Bug
Qus :

What is the output of following code

a = [1,2,3]
del a[1]
print(a)

Qus

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

a = [1,2,3]
del a[1]
print(a)


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


Solution
B. [1,3]






Report Bug