Initialization/Constructor
The initialization/constructor method is used when a new instance of the model is created. This function can set default values, as well as initial values for the columns.
The name of the initialization methods needs to either init
or __init__
. It has to at least take in self
as it's first parameter.
Example
Last updated