Creating Directories using os.makedirs() in Python

By Ranjeet V

In this tutorial, we are going to learn how we can create directories using os.makedirs() in Python. As we know, the OS module in Python helps us to interact with the operating sys.... Read More

Multiple inheritance using interfaces in Java

By Ranjeet V

In object-oriented programming, multiple inheritance is the property, where a class inherits properties of more than one class. Java does not support multiple inheritance through c.... Read More

How to get Phone Number details using Python

By Ranjeet V

In this article, we are going to learn how to get phone number details in Python. There is a very interesting and useful library with the name ‘phonenumbers’. We will b.... Read More

__reversed__ magic method in Python with examples

By Ranjeet V

Hello everyone, in this post, we will talk about the __reversed__ magic method in Python with examples. Like other magic methods, this special method also begins and ends with a pa.... Read More

ios::good() and ios::bad() functions in C++

By Ranjeet V

ios::good() and ios::bad() functions in C++ are used to check the state of the stream whether it is good or bad to do our task. Both of these are defined in ios library. These func.... Read More

Position of a robot after given movements in C++

By Siddharth Raja

In this tutorial, we will write a C++ program to find the final position of a robot from the given movements. Let us consider a robot that can move in a 2-Dimensional space, we nee.... Read More

isnormal() function in C++

By Ranjeet V

In this tutorial, we are going to talk about the working of the isnormal() function in C++. As it is very much evident from its name, this function is used to find out whether a nu.... Read More

numpy.isnat() method in python with examples

By Ranjeet V

In this Python tutorial, we are going to learn about numpy.isnat() method. This method helps in figuring out whether the value returned by numpy.datetime64() and numpy.timedelta64(.... Read More