Learning Design Patterns

Python oops Everything in python is an object (So a method with its variables / properties) that is also a object OOPS is not that simple as we use in projects , its an interesting low-level discussion Class variables : So these are the one that are same for all the instance of the class and are from same memory location so changing any one of these will lead to change of other as well. like this: class Node: value: int , next: None ...

October 15, 2025 · 2 min · Mohit Dulani