Python

Learn Python programming from scratch

144 tutorials
12 of 144 tutorials
Jul 6, 2026· 5 min read

Python Variables Explained

Understand what Python variables are, how they store and reference data, and why Python's variable model is different from other programming languages.

PythonVariablesBeginner
Jul 6, 2026· 5 min read

Create and Assign Variables in Python

Learn every way to create and assign variables in Python, from basic single assignment to expressions, type hints, and practical patterns beginners use every day.

BeginnerVariablesPython
Jul 6, 2026· 5 min read

Python Variable Naming Rules

Learn Python's variable naming rules, including allowed characters, reserved keywords, PEP 8 conventions, and how to choose names that make your code readable.

VariablesBeginnerPython
Jul 6, 2026· 5 min read

Reassign Variables in Python

Learn how to reassign Python variables to new values, how reassignment interacts with mutable and immutable types, and the patterns that keep your code predictable.

BeginnerVariablesPython
Jul 6, 2026· 5 min read

Assign Multiple Variables at Once in Python

Learn how to assign multiple Python variables in a single line using tuple unpacking, swap values without a temporary variable, and use starred expressions for flexible assignments.

BeginnerPythonVariables
Jul 6, 2026· 5 min read

Constants in Python

Learn how Python developers create constants using uppercase naming, why Python has no const keyword, and how to write code that signals read-only values.

BeginnerVariablesPython
Jul 6, 2026· 5 min read

Python Data Types Explained

Learn every built-in Python data type including numbers, strings, booleans, collections, and None. Understand which type to use and why types matter.

PythonBeginnerData Types
Jul 6, 2026· 5 min read

Integer Data Type in Python

Learn how Python integers work, including unlimited precision, arithmetic operations, integer literals in different bases, and common integer methods.

BeginnerData TypesPython
Jul 6, 2026· 5 min read

Float Data Type in Python

Learn how Python floats work with IEEE 754 double precision, why 0.1 + 0.2 is not exactly 0.3, and how to handle floating-point arithmetic correctly.

PythonData TypesBeginner
Jul 6, 2026· 5 min read

Boolean Data Type in Python

Learn how Python booleans work as a subclass of integers, how truthiness evaluates any value, and how to use boolean logic in conditions and expressions.

Data TypesBeginnerPython
Jul 6, 2026· 5 min read

The None Data Type in Python

Learn how Python's None singleton represents the absence of a value, when to use None as a default, and how to check for None correctly with the is operator.

Data TypesPythonBeginner
Jul 6, 2026· 5 min read

Complex Numbers in Python

Learn how Python's built-in complex number type represents values with real and imaginary parts, how to perform arithmetic, and when to use the cmath module.

PythonData TypesBeginner