Report Bug
Qus : Which of the following statements is used to create an empty set?
Qusएम्प्टी सेट क्रिएट करने के लिए निम्नलिखित में से किस स्टेट्मेंट का यूज़ किया जाता है?

A. { }
B. set()
C. [ ]
D. ( )


Solution
B. set()



Explanation
{ } creates a dictionary not a set. Only set() creates an empty set.



Report Bug