There are so many modules that you may have heard about or used in Python. Have you heard about the Collections module?
As a programmer, data structures is a very common word in our world. Different programming languages have their own set of data structures. In Python, it is a bit different but very easy to work with. Even as a beginner you can easily visualize a list, dictionary and a set. These are the data structures in python. What's important is know their properties.
First comes the list...
Published on May 28, 2020 09:37