slots in python

By Ria Sehgal

In this tutorial, we will try to understand slots in Python with a simple example. In Python, we use __dict__ function to store the object attributes. This allows setting new attri.... Read More

str() Vs repr() in Python

By Ria Sehgal

In this Python tutorial we will learn str() Vs repr() in Python, which means the difference between str() and repr(). In Python, strings are one of the basic data types. It include.... Read More

Object Detection in PHP with 15 lines of code

Object Detection in PHP with 15 lines of code

By Faruque Ahamed Mollick | October 21, 2019

Object Detection is a powerful deep learning application used in many industries in this modern time. There are lots of processes and algorithms run to detect an object accurately. So surely, it needs to write lots of codes to develop an object detecting system in real life. But wait… In this article, I will show […] Read More

How to create a multiplication table in C++

By Ranjeet V

This is a C++ tutorial where we will learn how to create a multiplication table. We will accomplish this using a for loop in C++, however you can use while or do while loop also. M.... Read More

Count the number of words in a string in C++

By Sakshi Gupta

In this tutorial, we will learn how to count the number of words in a string in C++. There can be various ways to do this. The following is a simple one. Given a string, words can .... Read More

In-place rotation of a matrix by 90 degrees in C++

By Sakshi Gupta

In this tutorial, we will learn In-place rotation of a matrix by 90 degrees in c++. There are many ways to do it. We will be learning in-place rotation in this article. In-place ro.... Read More

Delete the middle element of a stack in C++

By Sakshi Gupta

In this tutorial, we will learn how to delete the middle element of a stack in C++. We can use the STL (Standard template library) stack and have to delete the middle element. This.... Read More

Using Bisect Module in Python

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning about Bisect Module in Python which is based on the Bisection Algorithms and can be used to maintain a list in a sorted ma.... Read More

Related Posts