๐๏ธ Special Guide exclusive for you ๐
Hi Dhruva! ๐
Ready to become a coding hero? ๐ป๐ฆธโโ๏ธ
Today, weโre going to learn how to set up Python and run your very first program โ step by step, super easy, just like building LEGO! ๐งฑ๐
๐ What is Python? (ELI10 Style)
Imagine you have a robot ๐ค that listens to your instructions.
Python is the language you use to talk to that robot!
You type commands โ Python understands โ Computer does magic โจ
๐ ๏ธ Step 1: Install Python (Your Coding Tool)
๐งญ Follow these steps:
- Open your browser ๐
- Go to ๐ https://www.python.org
- Click Download Python (3.x.x) โฌ๏ธ
- Open the downloaded file
โ ๏ธ IMPORTANT:
๐ Check this box:
โ๏ธ “Add Python to PATH” (Very important! Donโt skip!)
- Click Install Now
- Waitโฆ โณ
- Click Finish ๐
๐งช Step 2: Check if Python is Installed
Letโs test it like a detective ๐ต๏ธโโ๏ธ
๐ป On Windows:
- Press
Windows + R - Type
cmdand press Enter
๐ป On Mac:
- Open Terminal
Now type:
python
๐ If you see something like:
Python 3.x.x
>>>
๐ YAY! You did it!
โ๏ธ Step 3: Write Your First Program
Letโs make the computer say hello ๐
Type this:
print("Hello Dhruva! ๐")
Press Enter โ
๐ช What happens?
The computer will reply:
Hello Dhruva! ๐
๐ฅ BOOM! You just wrote your first program!
๐ Step 4: Save Your Program (Like a Pro)
Instead of typing every time, letโs save it!
๐งญ Steps:
- Right-click on Desktop ๐ฑ๏ธ
- Click New โ Text Document
- Rename it to:
hello.py
โ ๏ธ Make sure it’s .py, not .txt
โ๏ธ Open it and write:
print("Hello Dhruva! Welcome to Python ๐")
Save ๐พ
โถ๏ธ Step 5: Run Your Program
- Open Command Prompt / Terminal
- Go to Desktop:
cd Desktop
- Run the file:
python hello.py
๐ Youโll see your message appear!
๐จ Fun Example: Your First Game ๐ฎ
Letโs make a tiny game!
Open your hello.py and replace with:
name = input("What is your name? ๐ ")
print("Hello " + name + "! Let's learn Python together! ๐")
โถ๏ธ Run it again!
Now it will:
- Ask your name ๐ง
- Talk back to you ๐ฃ๏ธ
๐ก Thatโs called interaction!
๐ง Bonus Challenge (Try This!)
Change your program to:
age = input("How old are you? ๐ ")
print("Wow! " + age + " is a great age to start coding! ๐ก")


