Comments are written for... ✔✔Humans to read and to understand
What symbol is used at the beginning of an in-line comment? ✔✔#
What punctuation is used to begin a multi-line comment? ✔✔"""
What name follows all naming rules? ✔✔make_square
If I am creating a function that makes two squares, what would be the best name option?
✔✔draw_squares
What is not a way functions make our code more readable? ✔✔Each function only contains one
command
What two things must be included in your function definition? ✔✔A function name and
commands to be performed