Sir plz gives more interview questions and your simplely describe answers in this series
@mukundachlerkar80213 жыл бұрын
Nice perception.
@swetaupadhyay51194 жыл бұрын
Very good video.
@korleonedon83812 жыл бұрын
Sir can you please let me know is it the same concept in C++ with virtual functions and vptr ??? Is it dynamic polymorphism in python???
@amanmishra98apr4 жыл бұрын
Best explanation of monkey patching
@kritikaarora96074 жыл бұрын
I have a question regarding the example taken in the video : Q1 that if suppose a class is defined in some third party python module . And I need to override the functionality of get_data by calling my function in other code created override module . Then is it possible that everytime my function get call inspire of the class get_data method. Q2 can we do 🐒 patch a function.
@KartikSir_4 жыл бұрын
>>> import math >>> math.factorial(5) 120 >>> def factorial(): print('My Function') >>> math.factorial = factorial >>> math.factorial() My Function >>> math.factorial(5) Traceback (most recent call last): File "", line 1, in math.factorial(5) TypeError: factorial() takes 0 positional arguments but 1 was given >>> Yes absolutely
@kritikaarora96074 жыл бұрын
@@KartikSir_ how to override a class method in the Django project using 🐒 patching
@dashingboy55864 жыл бұрын
First one who watch it
@statusloveking55744 жыл бұрын
Sir Newton school me admission kaise le sir please ispe uk video banaaiye
@golupandey38723 жыл бұрын
I want job with tarning once more in python language
@kritikaarora96074 жыл бұрын
Q2 can we 🐒 patch the module function in my utility module? Q3 difference between 🐒 patch , function and methods overriding?
@suniljha9254 жыл бұрын
Is all programing language are same data structure? Please reply me