Printing in Python is a very important first skill to learn. Printing will display text in the console.
print shows that we will be printing something
( ) whatever is inside the parentheses will be printed
“ “ shows that we will be printing words / a string
Hello World! are the words that will be printed in the console
print("Hello World!")
>>> Hello World!
Make a program that prints your name on one line, then prints your favorite number on another line. Make sure your code is organized with comments. Your favorite number has to be stored as a variable, but you can normally print your name.