Comments are used to explain code when the basic code itself isn't clear.
Python ignores comments, and so will not execute code in there, or raise syntax errors for plain english sentences.
Single-line comments begin with the hash character (#) and are terminated by
the end of line.
Single lin...