Course Content
🧩 Introduction to Programming?
What is Programming? 🎯 Objectives: 📘 Explanation: 💻 Example (in Pseudocode): 🛠️ Exercise:
0/1
🧩 Module 2: Adding Interactivity (JavaScript)
0/3
🧩 Module 3: Programming Language (Python)
0/1
🎓 Coding for Kids: A Beginner’s Course | HTML, CSS, JavaScript & Python

Python Basics

Objective: Write and run Python scripts.

  • Variables, print(), input.

  • Arithmetic operations.

Code Example:

python
 
name = input("What's your name? ")
print("Hello, " + name)

Exercise:

  • Write a script that adds two numbers.