Module 1: The Age Calculator
Concept: Variables, Input, and Type Casting.
We build a simple app that asks for your name and age, then calculates the exact year you will turn 100.
📺 The Build Session
🧠 Key Concepts
- Input:
input()always returns a string (text). - Casting: We use
int()to convert text into numbers for math. - F-Strings: The clean way to combine text and variables:
f"Hello {name}".