Welcome to this class on Backend Development with Python.
I’m Mr. Akim shittu from TecTerminal Inc.
Python is one of the most popular programming languages.
It’s widely used in:
Backend web development
Data analysis
Machine learning
Automation
In this course, we’ll focus on using Python for backend web development.
In this first lesson, we’ll cover:
Introduction to Python
Setting up Python in VS Code
Verifying installation
Installing Python extensions in VS Code
Creating your first Python project and file
Open Google Chrome (recommended).
Visit www.python.org.
Go to Downloads.
Choose the version for your operating system (Windows, Mac, etc.).
Note: Python 3.9 and above doesn’t work on Windows 7 or earlier.
Run the installer from your Downloads folder.
Select “Add Python to PATH”.
Check “Install for all users”.
Choose Customize Installation → make sure all options are ticked.
Click Install.
Once done, you’ll see “Setup was successful.”
Open the Command Prompt (CMD).
Type:
python --version
Press Enter.
If successful, you’ll see the installed Python version (e.g., Python 3.11.5).
Open VS Code.
Go to Extensions (Ctrl+Shift+X).
Search for Python by Microsoft.
Click Install.
Create a new folder (e.g., py_course) on your Desktop.
Open the folder in VS Code.
Create a new file with the .py extension (e.g., lesson1.py).
In your file, type:
print("Hello, my name is Akinshuti")
Click Run in VS Code.
Expected output:
Hello, my name is Akinshuti
In this lesson, we:
Learned what Python is and why it’s popular.
Downloaded and installed Python.
Verified the installation via command prompt.
Installed the Python extension in VS Code.
Created and ran our first Python program.
In the next lesson, we’ll cover:
Variables
Data types
Operators
Control flow (if statements & loops)
Functions and modules
Not a member yet? Register now
Are you a member? Login now