Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 4: Understanding Python Errors, Comments, and Code Quality!
Instruction
Comments
The Hash Character
Comments are short phrases that explain what the code is doing. For example, lines 1, 8, and 10 in the following program contain comments. Each comment begins with a hash character (#
). All text from the hash character to the end of the line is ignored when running the program. In contrast, hash characters inside of strings are treated as regular text. For example, th...