The big little idea
A program is a set of instructions a computer can follow. Python reads these instructions from top to bottom. The print() function puts a message in the output.
print("Hello, universe!")
print("I made this with code.")Words inside quotation marks are called a string. Keep the opening and closing quotes around your message, and put it inside the parentheses.