top of page

02.15.2018: One Lesson of Python

Today's soundtrack is Woods of Ypres: Grey Skies & Electric Light.

I'm continuing today with Coding Projects in Python. This chapter is about identifying and fixing bugs. I learned that I can right-click an error code and choose to go to the line where the error has occurred.

The book says that common errors include syntax errors (typos), missing punctuation (bracket or quotation mark), indentation errors, type errors (as in, which type of data is being input), trying to use unidentified variables or functions, or logic errors (misplaced or missing information).

This section didn't give me any exercises to try, which is a bit disappointing; however, I wanted to get to bed early tonight, so there's always a silver lining.


bottom of page