Python - Object Oriented Programming | Multiple Inheritance

preview_player
Показать описание
Multiple Inheritance in Python. How to achieve it and use of Multiple Inheritance.
Diamond problem

--You May Also Like --

==================FOLLOW ME ==================

Subscribe for New Releases!

(ask me questions!)

--- QUESTIONS? ---

Leave a comment below and I or someone else can help you.
For quick questions you may also want to ask me on Twitter, I respond almost immediately.

Thanks for all your support!
Рекомендации по теме
Комментарии
Автор

You can explain really well. I like how you go through steps of getting an error then fixing it, that is very logical and makes the concept easier to understand. keep it up!

moapaname
Автор

I know this video is 3 years old and likely no longer monitored: but I just want to say thank you. I just went through every step you just outlined (except the end which has the correct way of doing things). I came here just for this reason. It's funny how every "error" you did so closely mirrored what I tried/failed.

murphygreen
Автор

Thank you for quickly going through every wrong scenario that I would have tried first before giving the right answer.

dmitriypetrovykh
Автор

Finally someone, who is able to explain this thing clearly under 20 minutes. Thank you mate, wish you a nice day.

vitezslavslavik
Автор

Thank you so much you were very helpful to me as I pass the error that I have been trying to, for about 2 hours.

muhammadamr
Автор

WoW simple, fast and to the point explanation.

pkavenger
Автор

Thank you very much my friend! You helped me a lot! Best tutorial in multiple inheritance

walubalu
Автор

This was so great and clear, thank you so much!!!

genmartin
Автор

You were a lot more clearer than my instructor. Thank you sir.

usmanchughtai
Автор

You are a really well teacher
you have a million thanks from me

aronabhilash
Автор

Thank u so much to provide such helpful videos they helps me a lot

sourabhgusain
Автор

Thank you very much for a good explanation. You saved me some time here :)

peretternavn
Автор

very good video! starts off simple, addresses one issue at a time, clear explanation, will check out other!

If you could add some visuals to explain concepts, it would be even better! Thank you!

nugnoy
Автор

That was very clear. Thank you very much!

Voltaire
Автор

You need to look up how MRO works in python3

animeshsingh
Автор

tnx man, you really helped me with video

segevchen
Автор

This explanation actually helped me solve an unrelated issue in my program XD

stefancoetzer
Автор

Thak you so much... A very helpful video... 💯👍🏻

sonasreedhar.
Автор

Great tutorial on multiple inheritance, not super ( pardon the pun) but fantastic!

philipackerley
Автор

Maybe you will have the answer I need.

[edit] Yep. Finally. So many videos cover this, but only you covered the __init__() issue. Thanks.

[edit 2] Or... not? I'm still getting an inconsistent MRO error for my child class.

I have a base GUIElement class and a ScrollableElement class the inherits from the GUIElement class. I also have a DrawerElement class that can inherit from both the GUIElement and ScrollableElement classes. How do I initialize the DrawerElement class properly?

thetruth