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

The arrow keys

A Python shell is convenient for exploring and troubleshooting code. The user can try something, look at the results, and then try something else. When an error occurs, an error message is displayed, but the program keeps running. This allows the user to edit the previous line and correct the error interactively.

The acronym REPL (pronounced "rep ul") is often used when referring to a sh...