Your journey to becoming a developer starts here.
"This is the moment you become a real programmer! In the next 15 minutes, you'll have a professional coding environment ready to build amazing things."
Choose your operating system below
For Windows 10/11
Visit python.org/downloads
Click "Download Python 3.x.x"
Run the installer
CRITICAL: Check "Add Python to PATH"
For Mac computers
Ubuntu, Fedora, etc.
Ubuntu / Debian
Fedora / RHEL
# Check if installed correctly:
# Output should look like:
Python 3.12.1
The industry standard. Powerful, beautiful, and free.
Designed specifically for beginners.
The default editor that comes with Python.
Let's create your very first Python script!
Open your code editor
VS Code, Thonny, or IDLE
Create a new file and save it as
first_program.pyType the code below exactly as shown:
print("🎉 Welcome to Python Programming!")
print("This is MY first program!")
print("I can write code now!")
print("The future starts here! 🚀")Press F5 or click the Run button in your editor
python first_program.py→Execute your programMake the program about YOU. Fill in the blanks:
print("My name is: __________")
print("I love: __________")
print("Fun fact: __________")Python is a powerful calculator. Try this:
print("Math Time! 🧮")
print(5 + 3)
print(10 - 2)
print(4 * 2)
print(16 / 2)Windows: You likely missed "Add to PATH" during install. Reinstall and check that box!
Mac/Linux: Try typing python3 instead.
Did you save it? Is it named .py? Are you in the right folder in terminal?
VS Code too complex? Switch to Thonny for now. It's much simpler!
Environment Setup Pro
+20 XP Points
Badge Earned!
"Every professional developer started exactly where you are right now. The setup might feel technical, but you've just built the foundation for everything you'll create. This is the hardest part - it gets much easier from here!"
Ready to show off? Try these extra missions:
You now have a professional coding environment! In the next step, you'll learn about Variables and start building interactive programs.