Python Basics

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 →
Zero to Python Hero
Rajesh 📅 Last Updated: 21 Mar, 2026

Zero to Python Hero - Part 1/10: A Beginner guide to Python programming

What is Python? Why Use It? Python is a high, simple and readable level programming language that is known to...

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 →
Placeholder
Naveen 📅 Last Updated: 21 Apr, 2025

OOPs in Python

Object-oriented programming (OOP) is a programming paradigm based on the concept of objects which contains data or attributes and code...

Read More →
Placeholder
Naveen 📅 Last Updated: 21 Apr, 2025

Python functions, Parameters, Arguments, args and kwargs

Python functions A function is a construct that helps us perform some action using a block of code (the body...

Read More →
Placeholder
Naveen 📅 Last Updated: 12 Dec, 2024

List comprehensions, break-continue, exception handling in Python

As we have learned for loop to walk through a sequence, and do something with each item, at least read...

Read More →
Placeholder
Naveen 📅 Last Updated: 12 Dec, 2024

How to use if else, while and for loops in python?

The if and else clause are used to structure our code with checks for conditions. The if statement is followed...

Read More →
Placeholder
Naveen 📅 Last Updated: 12 Dec, 2024

Operations in Python

There are many type of different operations using operators in the language: Identity As we manipulate values (using variable), two...

Read More →
Placeholder
Naveen 📅 Last Updated: 12 Dec, 2024

Data types in Python

Now let’s discover data types that we can use to manipulate more data and do more things, such as lists,...

Read More →
Placeholder
Naveen 📅 Last Updated: 12 Dec, 2024

Python Basics

Let’s quickly explore the first tools and basic syntax rules for a beginner to start using Python. But before that,...

Read More →