

Hello.py print("Hello from my Python script") Run the Python Script from the Terminal

This Python script (hello.py) will simply print out a statement that lets us know the code in the script has run, as shown below. Let’s create a very simple script to demonstrate how this works. If you don’t see something similar, it means that you don’t have Python installed or that the command prompt is not aware of your Python installation. Type "help", "copyright", "credits" or "license" for more information. You should see a message that documents the Python version that is being used followed by >, which indicates the next code you type will be executed by the Python interpreter. To do this, open the command prompt, type python and press ‘Enter’. To start, you need to make sure the command line application you are using has access to your Python installation. Make Sure Your Terminal or Command Prompt Can Run Python Once you are comfortable running Python scripts from the command line, continue improving your skills by learning how to pass arguments to your scripts.

Once you’ve mastered that, you can get more complicated by passing in required arguments so that your scripts can stand on their own. This article will demonstrate how to get a simple Python script running on the command line in a matter of minutes.

Creating Python scripts that can be run from the command line makes it much easier to abstract and share your code so that it can be reused and shared with others.
