VFViresh Fegadeinvireshfegade.hashnode.dev·Sep 30, 2021 · 3 min readStack in PythonIntroduction Stack is a linear data structure which follows principle of Last-In-First-Out(LIFO). Stack is also a dynamic data structure which do not have any fixed size. Stacks do not consume fixed amount of memory size. When we insert or pus...00
VFViresh Fegadeinvireshfegade.hashnode.dev·Sep 30, 2021 · 7 min readInheritance in Object Oriented ProgrammingIntroduction Inheritance is one of the most important aspect of object oriented programming. In real life, inheritance means child receives some qualities and behavior from parents. Similarly, in object oriented programming, the child class receives...00