#100DaysOfCode in Python Transcripts
Chapter: Days 4-6: Collections module
Lecture: Lesson introduction
Login or
purchase this course
to watch this video and the rest of the course contents.
0:01
Welcome back to the 100 days of Python. In the coming three days I will guide you through the collections module, a very convenient module
0:09
to work with more advanced data structures. First we look at namedtuples and how they can make your code more readable and elegant.
0:16
Next we look at defaultdict, which is convenient to build up a nested data structure. Third, counter, saves a lot of code
0:23
to find the most common thing in a collection, and lastly, deque, which can tremendously improve your performance based on the operations
0:32
you want to do on your sequence, and for the second and third day I got a movie dataset where you can put the collections module into practice.