资讯

This quiz tests your understanding of Python classes, specifically how attributes can be dynamically added to instances of a class outside the class definition.
With reference to #509 - lots of classes depend on an instance of class Network and have it as an attribute in order to communicate with the CAN bus. Examples are SdoBase (), PdoBase (), NmtBase () ...
Attribute additions that immediately follow the class def. Attribute additions only to the types that require it such as Enum and NamedTuple. I hesitate to suggest these restrictions though, because ...