In this tutorial, you’ll learn everything you need to know about programming in Python.
Why learn Python?
- Python is easy to learn
- You can do a lot with Python
- Python can get you a job
- Cross platform
- Simple syntax
- Python can create web apps
- Python can create desktop apps
- And more!
Note: Python is an interpreted language. This means that we run the source code directly (instead of compiling it)
Installing Python
Linux
On a Linux computer, simply use your package manager to install python3 or python, such as one of the following
sudo apt install python3
sudo pacman -Syu python3
sudo dnf install python3
macOS / Windows
On a Mac or Windows computer, download Python from the official Python website. Run through the setup installer (install the latest version of Python 3!)
Python course
Now you’re ready to start the course! Read the first lesson: Hello World!