+ 1

Héritage

l'héritage multiple est-il possible avec python ?

21st Jan 2018, 11:26 AM
sahar ben slama
sahar ben slama - avatar
2 Antworten
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)!
22nd Jan 2018, 8:27 AM
Thore