In this post, we will see how we can validate that a given string is a valid IP address (IPv4) or not in Python using regular expression (also knowns as REs or regex or regex patte.... Read More
What is Node.Js? Node.js is an open-source and cross-platform Javascript runtime environment. It is a way for us to write javascript on the server-side.Node.js provides asynchronou.... Read More
What does Two-Colorable mean for a graph? A two-colorable graph is a graph in which each vertex can be assigned a color (out of any two given colors, here we will assume these colo.... Read More
After this tutorial, you will be learned how to replace all ‘0’ with ‘5’ in an input integer in Python. This tutorial will show you 2 simple methods that ar.... Read More
In this tutorial, we will show you how to convert decimal fraction to binary in Python. Note: Here, we are going to convert a decimal number into its equivalent binary number up to.... Read More
This post will help you to write to an excel file using openpyxl module in Python. In first we have to know about the openpyxl module. openpyxl openpyxl: used for reading and writi.... Read More
In this tutorial, you are going to learn about the Theano library available in Python. One of the most important libraries in deep learning for Python is Theano. Theano consists of.... Read More
Hi guys, today we will see how to pass a 2D array as a parameter in C++. Before moving to the topic let us discuss what is a 2D array. 2D Array: It can be defined as an array of ar.... Read More