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

  1. int: Integer numbers (e.g., 10, -5)
  2. float: Decimal numbers (e.g., 3.14, 5.8)
  3. str: String/Text (e.g., "Hello")
  4. bool: Boolean (e.g., True, False)