Report Bug
Qus :

What is the output of following code

x = [10, 20, 30]
print(x * 0)

Qus

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

x = [10, 20, 30]
print(x * 0)


A. Error
B. [0, 0, 0]
C. [ ]
D. 0


Solution
C. [ ]






Report Bug