View Categories
python logo

Learn Python

14 Docs
Last Updated: May 12, 2026

Introduction to Python

What is Python? Python is a high-level, general-purpose programming language created by Guido van...

Last Updated: May 12, 2026

Install Python

There are multiple ways to install Python on your system. You can install Python...

Last Updated: May 16, 2026

Basic Python Program

Basic Python Program This is a simple Python program that prints Hello World on the screen....

Last Updated: May 18, 2026

Variables in Python

1. What is a Variable in Python? A variable in Python is a named container that...

Last Updated: July 6, 2026

Data Types in Python

In the last lesson, you learned how to create variables and store values in...

Last Updated: August 29, 2026

Type casting

Learn how to fix Python's "can't add string and int" error using type conversion. Covers int(), float(), str(), input() handling, with examples, FAQs, and practice questions for beginners.

Last Updated: August 30, 2026

Operators in Python

A complete guide to Python operators, arithmetic, assignment, comparison, logical, bitwise, membership, and ternary, with clear definitions, tables, examples, FAQs, and practice questions for beginners.

Last Updated: September 14, 2026

Conditional Statements in Python

A complete guide to conditional statements in Python, if, if-else, if-elif-else, and nested conditions, with definitions, examples, FAQs, and practice questions for beginners.

Last Updated: September 14, 2026

For loop in Python

A complete guide to the for loop in Python, covering range(), looping through strings and lists, break, continue, and the for-else clause, with definitions, examples, and practice questions.

Last Updated: September 14, 2026

While Loop in Python

A beginner's guide to the while loop in Python, covering condition-based repetition, infinite loops, break, continue, and when to use while instead of a for loop, with examples and practice questions.

Scroll to Top