set in python
In <a href="https://python.org">Python</a>, a set is a container whose objects must be unique. If you try to add something that's already in the set, it will not do anything (no error will be thrown).Open the Python <a href="https://pythonprogramminglanguage.com/repl/">interactive shell</a> to try it out. You can define a set by calling the set() method.a = set([1,1,1,1,2,2,2,2,3,3,3,3,3,3,4,4,4])