When learning Python you'll probably come across many references to the Command Line. What is it? How do you use it?
The answers to many of these questions can be found here. On Mac or Linux you're already set with Terminal or bash. To find Terminal on a Mac, look in the Utilities folder in Applications, or search for Terminal. Many versions of Windows come with Powershell, but you can also download it here.
Windows requires you to install Python, which can be confusing if you're new to programming. Below are a few guides to help you through the process:
An older version of Python comes pre-installed with MacOS. All you need
to do is open the Terminal application and type the following:
python
This will start Python in interactive mode, and everything else you type
in the terminal window will be treated as Python code.
In order to install a more up-to-date Python, look into Homebrew.
This depends on the Linux distribution you're using, but it will most likely be installed.
There are quite a few to choose from, but some of the most popular include:
Sublime Text(Mac, Windows, Linux)
Visual Studio Code(Mac, Windows, Linux)
Atom(Mac, Windows, Linux)
If you're using Windows, Notepad++ is a great option.