Exploring Computer Science - C6

Debugging

The process of identifying and removing errors from computer programming code.

Parse Error

Happens when you make an error in the syntax of your program.

TypeError

Occurs when you try to combine two objects that are not compatible.

NameError

These errors almost always mean that you have used a variable before it has a value.

ValueError

Occurs when you pass a parameter to a function and the function is expecting a certain type, but you pass it a different type.