Our Quizzes & Tutorials

Learn Python today with our getting started tutorial.

Our Quizzes help you to assess your skills and increase your confidence.

Our Articles on Data Science & Python

Design Principles Series – Inheritance in the Right Way

May 15, 2023

Inheritance helps us to follow the object-oriented principles, such as code reuse and polymorphism. However, there are some scenarios where inheritance may go wrong and that need…Read more

Python Basic Quiz #9 – For Loop

April 3, 2022

Hello Everyone! Welcome to the Short Quiz on Python For loop, Continue & Break statements.

This Quiz is made with questions from Operators. To…Read more

5 Most important Data Pre-Processing Techniques – Feature Scaling – Part IV

January 30, 2022

Summary:

In this article, we will learn what, why and how to do Feature Scaling – Normalization & Standardization.

We…Read more

5 Most important Data Pre-Processing Techniques – Encode Categorical Values – Part III

January 26, 2022

5 Part series of most important Data Pre-Processing Techniques of Machine Learning:

Part 1 – Verify…Read more

5 Most important Data Pre-Processing Techniques – Impute missing data – Part II

January 25, 2022

5 Part series of most important Data Pre-Processing Techniques of Machine Learning:

Part 1 – Verify data types…Read more

5 Most important Data Pre-Processing Techniques for Machine Learning – Part I

January 24, 2022

Data Pre-Processing is a vital part in building a model. We will see most important Data Pre-Processing Techniques that can be used for Machine Learning.

Read more

Python Basic Quiz #8 – Conditionals & Boolean Values

January 22, 2022

Hello Everyone! Welcome to the Short Quiz on Python Conditional Statements, Operators & Boolean Values.

This Quiz is made with questions from Operators. To…Read more

Python Basic Quiz #7 – Operators

January 22, 2022

Hello Everyone! Welcome to the Short Quiz on Python Operators.

This Quiz is made with questions from Operators. To learn about operators please check…Read more

How to Impute missing values using SimpleImputer and ColumnTransformer?

January 14, 2022

To fill NaN values, pandas library itself provides a function fillna() to replace NaN values.

However there is an advanced Classes in scikit-learn which…Read more

Choropleth Maps Using Python

December 27, 2021

Choropleth Map is a thematic Map in which areas of the map are colored or patterned using a statistical variable.

Lets take the…Read more