Error Management and Good Practices in Python [EN]

Generating an error

Analyzing the content of the “Traceback” and determining the type of error

What caused the error in this example?

List of common errors in Python

AttributeError example

How to solve the AttributeError in the example

How to get the length of a list

Turning a list into a numpy array

Getting the dimensions of a numpy array

IndentationError example

Cause of the IndentationError in the example

How to solve the IndentationError in the example

Importance of indentation in the example

SyntaxError example

Cause of the SyntaxError in the example

How to solve the SyntaxError in the example

IndexError example

Cause of the IndexError in the example

How to solve the IndexError in the example