TDS Archive

An archive of data science, data analytics, data engineering, machine learning, and artificial intelligence writing from the former Towards Data Science Medium publication.

Member-only story

Top Python Keywords That You Must Use in Your Data Preparation Process

4 min readFeb 8, 2022

--

Photo by Theo Crazzolara on Unsplash

You have data.

You need insights.

Unfortunately, before you get any insight out of data, you need to tackle the data preparation process.

At this point, there are commonly used Python keywords helping you in your basic data preparation tasks.

In this article, I will explain those top Python keywords and their uses in the data preparation process with easy to follow examples.

What is Keyword

Python keywords are reserved words that cannot be used as a variable name, function name or any other identifier as they have specific purpose and meaning in Python language.

Python 3.8 has 35 keywords which are listed below;

False      await      else       import     pass
None break except in raise
True class finally is return
and continue for lambda try
as def from nonlocal while
assert del global not with
async elif if or yield

--

--

TDS Archive
TDS Archive

Published in TDS Archive

An archive of data science, data analytics, data engineering, machine learning, and artificial intelligence writing from the former Towards Data Science Medium publication.

Erdem Isbilen
Erdem Isbilen

Written by Erdem Isbilen

Machine Learning and Data Science Enthusiasts, Automotive Engineer, Mechanical Engineer, https://www.linkedin.com/in/erdem-isbilen/

No responses yet