Jupyter Notebook Lab — Module 01#
Variables, Expressions & Data Types
Practice working with variables, data types, expressions, and formatted output in a live Python environment. This notebook walks through the core concepts from Module 01 using realistic business analytics scenarios.
Download#
Open the .ipynb file in Google Colab by selecting File → Upload notebook.
What You’ll Practice#
- Creating variables of each core data type —
int,float,str,bool - Building expressions that calculate business metrics
- Inspecting data types with
type() - Formatting output with f-strings for business reports
- Applying boolean logic to flag customer eligibility
Learning Objectives#
By completing this notebook you will be able to:
- Distinguish between
int,float,str, andbooland choose the right one for a given value - Write arithmetic and comparison expressions to derive analytical metrics
- Format numeric output for currency and business reporting contexts
- Read and understand code that uses variables, expressions, and data types
Next Module: Module 02 — Containers →