Hello World

(Read time is about 1 minutes)

Python is a vast high-level computer language.

Many who are learning a new computer language use a very simple yet powerful example to begin their learning process...

Print, Displays text or whatever you want to the screen.

print("Hello World!")

Simply outputs to the screen

Hello World!

This can be quite useful for learning why your program printed or did something else rather than doing what you expected it to do.

#, Comment, Allows you to add documentation/explanations to your code

# print("This will not run, because it's a comment")

but

# This is a comment
print("This is a print statement")

Which will result in

This is a print statement.

Next we will discuss Variables