Report Bug
Qus : If a={5,6,7,8}, which of the following statements is false?
Qusयदि a = {5,6,7,8}, निम्नलिखित में से कौन सा स्टेट्मेंट गलत है?

A. print(len(a))
B. print(min(a))
C. a.remove(5)
D. a[2]=45


Solution
D. a[2]=45



Explanation
The members of a set can be accessed by their index values since the elements of the set are unordered.



Report Bug