

Python Tutorial to learn Python programming with examples
Complete Python Tutorial for Beginners Playlist :
Python Tutorial in Hindi :
Github :-
Editing Monitors :
Check out our website:
Follow Telusko on Twitter:
Follow on Facebook:
Telusko :
Navin Reddy :
Follow Navin Reddy on Instagram:
Subscribe to our other channel:
Navin Reddy :
Telusko Hindi :
Donation:
PayPal Id : navinreddy20
Patreon : navinreddy20
Very Good Sir
after seeing which video I will be able to draw with python
If we want call constructor of b using c's obj in multiple inheritance what is the condition we want apply?
Is we call super()._init_() again?
🖖🏻 Did you take that fron Sheldon Cooper?
I have a doubt.
What if we create one function in Class A and one function in Class B but with the same name.
now i inherit Class A in Class B and after creating an object for class B and want want to call that function but from class A.
For Example—-
class A:
def F1(self):
print("I am Function 1 from Class A")
class B(A):
def F1(self):
print("I am Function 1 from Class B")
b = B()
b.F1()
Output will be "I am Function 1 from Class B".
but i want to call function F1 from Class A.
What if we want to access both left and right methods from class C itself ?
I have changed my google search on python to like multithreading in python telusko … Ha ha I now add telusko in every python topic search … Great lectures
Sir,refer @4:50 .When I code Iam told that "type error",super() takes atleast one argument.
Why this happens??plz help.
Hello Navin instead of super().__init__() , we can you A(). any difference??
Twinkle twinkle little star 🌟 Navin sir python star 🌟
overall video is amazing and interesting too, but I found that whole tutorial becomes useless because of not having exercise problem.
especially for oops part.
Created account just to comment. Simple and to the point explanation.
subscrib done !
Sir when I was doing this programme output is not coming ..It is written that " Cannot create a consistence method resolution order for base A And B" …Help me plzzz
You look like satya Nadella 😅
What if we want to print _init_ of B as well ?
This Is best
I had already watched other python tutorial but this guy he nails the knowlede in your brain also he teaches deep concepts
This concept became clear very easily
Sir super command is not working.
Super().__init__().
It says super has no argument
Plz explain,
class Animal:
def __init__(self, Animal): print(Animal, 'is an animal.') class Mammal(Animal):
def __init__(self, mammalName): print(mammalName, 'is a warm-blooded animal.') super().__init__(mammalName)
class NonWingedMammal(Mammal):
def __init__(self, NonWingedMammal):
print(NonWingedMammal, "can't fly.") super().__init__(NonWingedMammal) class NonMarineMammal(Mammal):
def __init__(self, NonMarineMammal):
print(NonMarineMammal, "can't swim.") super().__init__(NonMarineMammal)
class Dog(NonMarineMammal, NonWingedMammal):
def __init__(self):
print('Dog has 4 legs.') super().__init__('Dog')
d =Dog()
print(''")
bat = NonMarineMammal('Bat')
……………………………………………
Plz explain this. I dont get that how it prints dog cant fly but not prints bat can fly