# Your first program will grant you good luck in your python journey! Here it is: print("Hello world!")
Here is what the above code is Doing:
1. The first line is a comment. It is not run by the computer.
2. The second line is a print statement. It tells the computer to print the text in the parentheses.
3. The third line is also a comment.