Back To Home Page
🐍 Python & AI Basics
Total Duration: 3 Free Classes
Age Group: 12 Years and Above
✅ Class 1: Introduction to Python & Smart Machines
Pre-requisite: Basic knowledge of computers (keyboard, mouse), curiosity about smart devices
Activity:
- Watch a short animation: “How does a Smart Speaker work?”
- Introduction to Python using Turtle or Replit
- Write first Python program:
print("Hello, Future Coder!")
Learning Outcome: Understand AI in real life, basics of Python, using the print()
function
Home Task: Write a Python program to print your name, class, and favorite subject.
✅ Class 2: Python Variables & Logic – Can Machines Think?
Pre-requisite: Completed Class 1 and can use print()
Activity:
- Intro to variables, numbers, and logic
- Use
if
statements to simulate decision making
age = 11
if age > 10:
print("You can play this game!")
Learning Outcome: Learn about variables and conditional statements
Home Task: Write a program that checks if your age is greater than 12 and prints a message.
✅ Class 3: Intro to AI – Image Recognition & Chatbots
Pre-requisite: Completed Class 2 and basic Python syntax
Activity:
- Watch AI in action – Google Lens demo
- Create a mini chatbot with
input()
and print()
name = input("What is your name? ")
print("Hi " + name + "! I'm your chatbot friend.")
Learning Outcome: Understand AI use in chatbots and image recognition, use input/output in Python
Home Task: Build a chatbot that asks 3 questions and replies to each using input()
.