by Shahinur | Sep 20, 2019 | Python
So far, all the programs we have seen are console-based, meaning we see the output on the computer screen. But what if we want to save our results in a file on the computer or work with a file stored on the computer? In that case, we need to read from or write to a...
by Shahinur | Sep 15, 2019 | Python
When programming, encountering errors or mistakes is very common, but fixing them can be a complex task. A good programmer is characterized by their ability to easily identify and debug any errors. Errors can generally be divided into three categories: Compile Time...
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,...
Recent Comments