# Brady Vestal
# 21 September 2021
# In this lesson, I learnt how to display text using the print statments. I also learnt many ways to run my programs and how to add effective comments.
# I didn't really have any problmes other than understanding the layout of the text and being able read them,
# I figured it out though and I'm sure I'll get used to it!
# [ ] Review the code, run the code
# The following displays the text "Hello world."
print("Hello world")
# This is how a comment looks in Python code
# Every comment line starts with the # symbol
# This program, when ran, displays the text "Hello, World."
print("Hello, Mrs. Pfeffer!")
# The following code displays the text "after edit, save!"
print("after edit, save!")
# This program pints the words Ctrl + S
print("Ctrl + S")