Python

Functions and Modules in Python
Rajesh πŸ“… Last Updated: 13 Jun, 2026

Zero to Python Hero – Part 6/10: Functions and Modules in Python

The main concepts of Python programming are functions and modules. They enable us to separate code into smaller, reusable and...

Read More β†’
Essential Data Structures in Python
Rajesh πŸ“… Last Updated: 13 Jun, 2026

Zero to Python Hero – Part 5/10: Essential Data Structures in Python: Lists, Tuples, Sets & Dictionaries

The fundamental way of storing, accessing and manipulating of data in python is data structures. Python provides an convenient and...

Read More β†’
Zero to Python Heroβ€Šβ€“β€ŠPart 2/10: Understanding Python Variables
Naveen πŸ“… Last Updated: 09 Nov, 2025

Zero to Python Heroβ€Š-β€ŠPart 2/10 : Understanding Python Variables, Data Types (with Code Examples)

Learning Python can feel overwhelming when you’re starting from scratch. I discovered this firsthand while researching about the Python resources...

Read More β†’
How to Remove Duplicates from a List in Python
Naveen πŸ“… Last Updated: 09 Nov, 2025

How to Remove Duplicates from a List in Python

In this article, we will learn how to remove duplicates from a list in Python. We have a list of...

Read More β†’
How to use *args and **kwargs in Python
Naveen πŸ“… Last Updated: 09 Nov, 2025

How to use *args and **kwargs in Python

I have come to see that most new Python programmers have a hard time figuring out the *args and **kwargs...

Read More β†’
Top Programming Languages for Data Science in 2024
Naveen πŸ“… Last Updated: 09 Nov, 2025

Top Programming Languages for Data Science in 2024

Data science is the art of discovering patterns and hidden gems within vast data oceans. Think of it as being...

Read More β†’
Denoising Images with Autoencoders Using TensorFlow and Python
Naveen πŸ“… Last Updated: 09 Nov, 2025

Denoising Images with Autoencoders Using TensorFlow and Python

In today’s digital world, images play an important role in various applications, from medical imaging to self-driving cars. However, images...

Read More β†’
How to Use the Else Block in For and While Loops in Python
Naveen πŸ“… Last Updated: 09 Nov, 2025

How to Use the Else Block in For and While Loops in Python

In this article, we will explore the uncommon syntax of the else block in both for and while loops. Understanding...

Read More β†’
How to use isinstance() Function in Python
Naveen πŸ“… Last Updated: 09 Nov, 2025

How to use isinstance() Function in Python | isinstance() in Python

In this article, we will explore the isinstance() function, which is a built-in function in Python. This function is commonly...

Read More β†’
Deque: Memory Efficient Alternative To Python Lists
Naveen πŸ“… Last Updated: 09 Nov, 2025

Deque : Memory Efficient Alternative To Python Lists

In this blog, we will be covering deque, which stands for Double Ended Queue in Python. We will explore why...

Read More β†’
11 Tips to Instantly Improve Your Python Code
Naveen πŸ“… Last Updated: 09 Nov, 2025

11 Tips to Instantly Improve Your Python Code

Python is a powerful programming language known for its simplicity and readability. In this article, we will explore 11 tips...

Read More β†’
Efficient Data Manipulation with Apply() Function
Naveen πŸ“… Last Updated: 09 Nov, 2025

Efficient Data Manipulation with Apply() Function in Pandas

If you’re a data enthusiast like me, you’ve probably dabbled in the world of Python and Pandas, the go-to library...

Read More β†’