Channel Avatar

Coding with Bintu @UCBTuzjmeuyMkkDCSNKUxJiw@youtube.com

7.5K subscribers - no pronouns :c

This youtube channel is for educating different programming


Welcoem to posts!!

in the future - u will be able to do some more stuff here,,,!! like pat catgirl- i mean um yeah... for now u can only see others's posts :c

Coding with Bintu
Posted 9 months ago

Access Modifiers in Python


This video tutorial is meant for absolute Python beginners that explains how #accessmodifiers define the visibility of attributes and methods of a class. Running programs are provided in this #codinginpython lecture to understand #protected members. A variable/attribute and a method becomes "protected" if it is prefixed by a single underscore ("_"). A protected member can be accessed by the class and its inheriting class. A class member becomes private member if it is prefixed by double underscore ("__"). A private member can be accessed within the body of the class i.e. the scope of visibility of the private member is within the class only.
#pythonprogramming, #pythonforbeginners, #learnpython, #pythontutorial, #privatemembers #accessmodifier



https://www.youtube.com/watch?v=bKCun...

0 - 0

Coding with Bintu
Posted 1 year ago

Hierarchical inheritance is not much discussed when compared with multiple or multilevel inheritance. As far as usage in real time applications is concerned, hierarchical inheritance is very popularly used as more than one classes can inherit a single base class with no interaction among the inheriting classes. Here is a small effort to explain the concept of hierarchical inheritance with running Python programs and diagrams. Any suggestions are most welcome. #bintuharwani #pythontutorial #pythonprogramming #python3 #inheritance #hierarchicalinheritance #pythoncourse


https://www.youtube.com/watch?v=qM72n...

0 - 0

Coding with Bintu
Posted 1 year ago

Whenever multiple inheritance is performed in Python, there are many chances of diamond problem. It is also known as diamond inheritance and it happens when method overriding and multiple inheritance are done simultaneously. This video tutorial is meant for beginners and explains how to use MRO (Method Resolution Order) to solve the diamond problem
The complete concept is taught with the complete running Python program with detailed explanation to make it a #pythontutorial of #multipleinheritance in #python3 language to make you learn #pythonprogramming
Explanation of diamond problem is from the beginning of the video

Code begins at 6.50 timeline


https://www.youtube.com/watch?v=9qArV...

0 - 0

Coding with Bintu
Posted 1 year ago

While learning OOPs programming, the most important topic that programmers and students get stuck is runtime or late binding and how does it differs from compile time or early binding. Basically this concept is related to virtual functions. I have tried to make the concept clear through this small video:

https://www.youtube.com/watch?v=thjYF...

0 - 0

Coding with Bintu
Posted 1 year ago

Multiple Inheritance Video Tutorial in Python
For making large applications, we need to inherit more than one classes. The concept of inheriting more than one classes is known as multiple inheritance. Proper care needs to be taken while implementing multiple inheritance as it may lead to "Diamond problem". This video tutorial makes the concept of multiple inheritance very clear through four running Python programs along with the technique of calling constructors of the "base class" from the "derived class".


https://www.youtube.com/watch?v=mOFjU...

0 - 0

Coding with Bintu
Posted 1 year ago

Structures is a topic that is asked in C programming interviews and practical viva tests. A small one minute video tutorial for quick introduction of C structure definition and declaration with running example:

www.youtube.com/shorts/e4Fvfj...

0 - 0

Coding with Bintu
Posted 2 years ago

Difference between static and class method in python | Static and class methods in python

This video tutorial is meant for beginners and it teaches the basic difference between static and class method in python with running examples. You will learn the usage of static and class method in real life applications in detail. #StaticMethodPython, #ClassMethodPython, #StaticAndClassMethod.



https://www.youtube.com/watch?v=3pDRy...

0 - 0

Coding with Bintu
Posted 2 years ago

I have realized that students find Taylor series quite hard to understand. This video tutorial helps in finding sin (x) using Taylor series with a step by step approach. Diagram and complete code is provided for clear concept:
#PythonTaylorSeries, #SinxTaylorSeries, #TaylorSeriesInPython

https://www.youtube.com/watch?v=oFIgi...

0 - 0

Coding with Bintu
Posted 2 years ago

While using functions, you will definitely need a clear difference between local and global variables. This video tutorial explains the usage of local and global variables with running Python code and their application in applications:

https://www.youtube.com/watch?v=5ySmJ...

0 - 0

Coding with Bintu
Posted 2 years ago

Finding whether a string is palindrome or not is a very common question asked in Python interviews and tests. In this video tutorial, I have explained how to do this with simple steps and figure. You will also learn how to write such a program using functions.


https://www.youtube.com/watch?v=0uam9...

0 - 0