Understanding Python Sets

An underutilized class in Python, because lists don’t solve all problems

Miguel Saldana
Towards Data Science
6 min readAug 22, 2022

--

Photo by CHUTTERSNAP on Unsplash

Python sets are something that most people in their early Python learn, but sometimes forget that in some places it might be more useful than, say, a list. Lists kind of get all the attention and are maybe not used in the proper context, but in this article we’ll highlight what sets are, ways you…

--

--