Python Tricks for Keeping Track of Your Data

How to keep track of information with a list, dictionary counter, and named tuple

Khuyen Tran
Towards Data Science
4 min readFeb 9, 2020

--

Motivation

In your data science projects, sometimes you want to keep track of the information in your data or have the flexibility of updating the new input of data quickly and easily. Knowing how to use some of Python’s data objects will keep you stay organized and avoid mistakes while dealing with a huge amount of data in your data science career.

--

--