Tuesday, March 23, 2021

Records and Sets: Selecting the Ideal Data Structure

There are a variety of ways for storing and managing data in your program and the choice of the right data structure has an effect on the readability of your code, ease of writing, and performance. Python has a wide selection of built-in mechanisms that meet most of your data structure needs. This course introduces you to two types of data structures: data records and sets.

There are multiple types and classes for both of these data structures and this course discusses them and provides information on how to choose the right one.

In this course you’ll learn about:

  • What are the advantages of using the built-in dict type as a Data Record
  • What flexibility do DataClasses add for Records compared to regular Classes
  • How to store C-type Data with struct.Struct
  • How to define Sets
  • Where to use a Frozenset
  • How to create a counter with a multiset

The course is the second part of an ongoing series, exploring how to find the right Data Structure for your projects. The first course is Dictionaries and Arrays: Selecting the Ideal Data Structure.


[ Improve Your Python With 🐍 Python Tricks 💌 – Get a short & sweet Python Trick delivered to your inbox every couple of days. >> Click here to learn more and see examples ]



from Real Python
read more

1 comment:

  1. The in-built data structures Python offers can be amazingly useful, choosing the right data structure according to problem requirements is essential. I appreciate your efforts in writing these educational articles. Great blog. Cracking the Coding Interview.

    ReplyDelete

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...