August 2022
Beginner to intermediate
248 pages
6h 3m
English
Data structures organize and store data, making it easier to access the data. Python ships with four data structures: lists, tuples, dictionaries, and sets. These structures are easy to work with, yet they can be used to tackle complex data operations, making Python one of the most popular languages for data analysis.
This chapter will cover Python’s four built-in data structures, with an emphasis on the features that allow you to easily build functional data-centric applications with minimal coding. You’ll also learn how to combine the basic structures into more complex structures, such as a list of dictionaries, ...