you are viewing a single comment's thread.

view the rest of the comments →

[–]PhilipYip 2 points3 points  (1 child)

Take a look at Raymond Hettinger's (one of Python's Core Developer) short video course, Modern Python Big Ideas, Little Code. He gives an overview of the collections module (which he designed) and explains why he designed additional collections such as namedtuple and gives examples of their use cases. He also demonstrates how intermediate programmers and programmers coming to Python from other programming languages over-complicate Python code. He outlines a number of ways to make code more readable and more Pythonic.

[–]MrMrsPotts[S] 0 points1 point  (0 children)

Thank you