Make Writing Code Easier
The problem...
You can write code. But it's not comfortable yet.
You create files manually, switch between windows, run commands every time.
It works. But it's slow.
The idea!
You don't need better skills yet. You need a better tool.
A code editor puts everything in one place — your files, your code, your terminal.
Start with 👉 Visual Studio Code. It's free, simple, and works everywhere.
Making it real
A good editor highlights your code, helps you spot mistakes, and lets you run everything without switching windows.
You don't need to configure it. You just need it to work.
Step 1 — Install
Download and install 👉 Visual Studio Code.
Click Next → Next → Install. Done.
Step 2 — Open your folder
Open VS Code. Click: Open Folder → choose the folder where hello.py is.
Step 3 — Open your file
On the left side you'll see your folder. Click hello.py.
Step 4 — Install Python support
Click the Extensions icon (the square on the left) → search for python → install the one made by Microsoft.
Step 5 — Run your code
Click ▶️ Run in the top right. Or right-click inside the file → Run Python File.
If you see:
Hello
It works.
If it doesn't work
- Close VS Code
- Open it again
- Open your folder again
- Run the file again
Heads up!
- Don't install lots of extensions — one is enough for now
- Don't change settings — defaults work fine
- Don't search for "best setup" — that rabbit hole never ends
The mindset shift
Stop thinking: "I need the perfect setup."
Start thinking: "I just need to write code and run it."
The tool helps. But it's not the skill.
What you should understand now
- A code editor makes everything easier — use one
- VS Code is free, simple, and enough
- Setup takes 5 minutes — don't overthink it
- If it runs, you're done