Module/Module 1: Python Fundamentals
Variables & Data Types
Overview
Learn about Python's core data types: integers, strings, floats, and booleans.
Objectives
- No specific objectives listed.
Course Content
0 Topics🔹 Variables
Variables act as containers for storing data values. In Python, you do not need to declare a variable's type explicitly; the interpreter handles this dynamically.
🔹 Primary Data Types
- int: Integer numbers (e.g.,
10,-5) - float: Decimal numbers (e.g.,
3.14,5.8) - str: String/Text (e.g.,
"Hello") - bool: Boolean (e.g.,
True,False)