Sets Vs Lists Python Programmer Tips

List example
Here unique is an empty list. Every time I compare with this list, and if it is not duplicated then the input item will append to the unique list.
>>> for name in ['srini', 'srini', 'rao', 'srini']:
... if name not in unique:
... unique.append(name)
... >>> unique ['srini', 'rao']
There is no need to do this when using sets. Instead of appending you add to a set:
Set example
... unique.add(name)
...
>>> unique {'srini', 'rao'}
Just like tuples and lists, interacting with sets have some differences on how to access their items. You can't index them like lists and tuples, but you can iterate over them without issues.
The only reason I use sets is to ensure there aren't any duplicates. If that is not needed, a list is preferable.
Related Posts
Comments
Post a Comment
Thanks for your message. We will get back you.