Your First Python Script

pythonlogo.png

In this lesson we will create a simple Hello, World! script in Python.

Python has rapidly grown in popularity over recent years due to its straightforward syntax.

To print Hello, World! we simply use the print function as follows:

Note that the above code assumes we are using Python 3 as opposed to Python 2. I recommend that you use Python 3.