Report Bug
Qus : Which of the following commands will create a list?
Qusनिम्नलिखित में से कौन सी कमांड एक लिस्ट क्रिएट करेगी ?

A. list1 = list()
B. list1 = []
C. list1 = list([1, 2, 3])
D. all of the mentioned


Solution
D. all of the mentioned



Explanation
Execute in the shell to verify



Report Bug