+ 1
Héritage
l'héritage multiple est-il possible avec python ?
2 Antworten
+ 5
0
Yes its possible.
Its important to keep in mind the order resolution of multilevel inheritance:
First, attributes are searched for in the current class; if no attribute is found the search continues in next-level parent classes (in from-left-to-right fashion for multiple parents)!