Hello World!

Hello World Program

Hello world in other programming languages

Goal


The goal for this exercise it to learn how to display information to the user.

Task1 :

Use the print function in the python shell. Display the message Hello World!

print('Hello World!')

Task 2:

Use the print function in a new file. Display the message Hello Python!

print('Hello Python!')

Video Walk Through