Your First Python Script — CODING ACADEMY

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:

print("Hello, World!")
view raw 28.py hosted with ❤ by GitHub

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