Check if a string is a valid IP address or not in Python using regular expression

By HIMANSHU ZAVERI

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

ExpressJS Web Application Framework | Node.Js

By Sapna Rathod

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

Determine Whether A Given Undirected Graph is Two-Colorable in Python

By Manan Kumar

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

How to replace all ‘0’ with ‘5’ in an input Integer in Python

By Mariya Banatic J

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

Convert Decimal fraction to binary in Python

By Mariya Banatic J

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

Write to an excel file using openpyxl module in Python

By Mariya Banatic J

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

Theano in Python

By Harini Madduri

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

How to pass a 2D array as a parameter in C++

By Arpit Jain

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