python-collections
Which Python Built-ins can you apply on all collections?

As you start programming in Python you will undoubtedly have to use a collection object. In case you don’t remember, collections class in Python provides access to various objects like (dictionaries, tupples etc). Besides the collections class, Python also supports lists, sets as built-ins. All of these provide you easier ways to store and manipulate data.
(more…)