Back Navigation Next Navigation Video 3: First Statements (page 1 of 6)

Comments Comments are explanatory statements that are not executed by the Python interpreter. They are designed to provide explanations to help yourself and others understand what was done. In Python, comments are entered in one of the following ways: 1) text starting with a # sign or 2) between a doc string (""" """). A doc string comment is generally for comments that span multiple lines.