Set
No account is required. Learn the material, try the examples, and mark it complete locally when you are ready to move on.
Set
Container of unique values.
Curly brackets are used as the notations for sets.
We can create a set out of any sequence of python objects. Even if we pass a lot of repeated values, only the unique values will be stored inside the set.
our_set = {1,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,4}
our_set{0, 1, 2, 4}our_set2 = {0,0,0, True, True, False, "some string"}
our_set2