© 2022 Athena Global Education. All Rights Reserved
Data Structures in Python [Python for Aspiring Data Scientists]
Source: (towardsdatascience.com, 2021)
Read full article from: https://towardsdatascience.com/data-structures-in-
python-python-for-
aspiring-data-scientists-b52bc058fcbd
Data structure is a specific way of storing and organizing data in
memory such that it can be
retrieved and used in a most productive way. The data structure plays
an important role in code
optimization. The rate at which the
data is stored or retrieved,
from the memory,
is quite important
in algorithm optimization especially when huge amount of data are involved.
There are several data structures in computer programming out of which
only a subset are available
in python right out-of-the-box. The following are the data structures in
python that are mainly used
for data science related projects.