Elements are not stored by insertion (unexpected order)
Mutable
Duplicate entries are not possible
# No Duplicate values -> not working
x =set(['wecode','wework','wecode'])# Non-duplicate value can be added -> working
x.add('weplay')# Another duplicates -> not working
x.add('weplay')