by Shahinur | Sep 7, 2019 | Python
Similar to inheritance, polymorphism is an important paradigm in object-oriented programming. Polymorphism in object-oriented programming refers to the ability of different classes to be treated as instances of the same class through a common interface. Let’s...
by Shahinur | Sep 6, 2019 | Python
Inheritance is a unique feature of any object-oriented programming language. It is a simple concept. Consider this: your father owns a car, which means (according to Bangladeshi customs) it is also your car, even though you might own another car yourself. Here, your...
by Shahinur | Sep 2, 2019 | Deep Learning, Machine Learning
Being with Deep Learning for a long time requires installing different packages or third-party software. But working in the GPU can sometimes lead to many problems. Basically the problem is with the version. That’s why I thought I’d write a note. However,...
by Shahinur | Aug 30, 2019 | Python
Object-Oriented Programming (OOP) is a significant programming paradigm in programming languages. In Python, everything is an object. For code reusability, OOP is unparalleled. In this context, a class is the fundamental structural unit. Class A class acts as a...
by Shahinur | Aug 23, 2019 | Python
A module in Python is an object that acts as a reference library. In short, each module is a file where various classes, functions, or variable definitions are stored. When developing large software, it is often necessary to perform different tasks, and using modules...
Recent Comments