This blog is about deep insight into the working of python lists. I am apologizing for the images I am putting into this blog. They are not my best work for sure. Lets get started. Let me explain about lists first. Everything in python is an object and kept in a heap of object. The … Continue reading Python Lists, deep insight
Category: python
Write the RIGHT Code
I am writing this blog as an awareness for the developers to write good quality code. As a human being we all take care of good hygiene, cleanliness, good looks etc etc etc. So that we live longer healthier in a good way. So why do we write code so messed up that the next person … Continue reading Write the RIGHT Code
Object Oriented Programming in Python
I present to you the playlist of OOP videos with everything you need to learn about Object Oriented Python programming. Let me know your feedback about this playlist. Contents: Class variable, methods & data member Abstraction Encapsulation/Interface Composition Inheritance/Derivation/Hierarchy MRO Generalization/Specialization Polymorphism Introspection/Reflection Magic Functions Built-in Functions Private/protected attributes. Delegation Metaclasses https://www.youtube.com/playlist?list=PLmIOJy35OTG9Ar0_o1FlVv5OWxc48UTHq
Everything i know about Threads
I am going to cover a huge concept here. How python code executes Multitasking Process based multitask (Multiprocessing) Thread based multitask (Multi-threading) GIL (Global Interpreter Lock) Green Thread Thread based programming is hard. There are no two ways about it. Every time one thinks he or she understands everything there is to know about how … Continue reading Everything i know about Threads
Access Specifiers/ Private-Protected in Python OOP
By default all methods and attributes in a python class are public. That means They can be accessed by the class members and by the module which contains it's import. There is no inbuilt syntax available for private, protected, friend, protected friend attribute in python, but you can do necessary changes to your variables to … Continue reading Access Specifiers/ Private-Protected in Python OOP