Where is the best place to initialize attributes for an instance of a class?
A. Within a for loop where the instance is created.
B. in the attribute_init() function.
C. in the initialize() method.
D. inside the __init__ method.



Answer :

Other Questions