How to validate an email address in Swift

By Aakanksha Thakar

This tutorial will see how to validate an email address in Swift. This is possible by taking an email address as a string and checking it with the regular expression of valid email.... Read More

Check if a key exists in an object in JavaScript

By Samim

In this tutorial, we will see how to check if a key exists in an object in JavaScript. We will use hasOwnProperty() method and in operator to check if a key or property exists in a.... Read More

Remove an object from an array of objects in JavaScript

By Samim

In this tutorial, I will show you how you can remove an object from an array of objects in JavaScript. An array of objects in JavaScript basically means an array that contains obje.... Read More

How to update a plot in Matplotlib

By Muskan Bani

In this post, we will see how we update a plot in Matplotlib. In matplotlib, updating a plot means erasing all the previous data and entering new data. This process goes in a loop.... Read More

How to load CSV file using NumPy in Python

By Prachi Pandey

This tutorial will help you to get an idea about how to load a CSV file using NumPy in Python. With the Python NumPy library, large amounts of data can be loaded faster by reading .... Read More

How to perform modulo with negative values in Python

By Aakanksha Thakar

This tutorial will see how to perform the modulo with negative numbers in Python. Modulo/Modular division is the operator in Python denoted by ‘%’. It gives you the rem.... Read More

Color spaces in OpenCV in Python

By Muskan Bani

In this post, we are going to cover an important topic of image processing that is, Color spaces in OpenCV in Python. The color space of a picture gives us a specific hue that repr.... Read More

Operators Precedence in C++ :

By YANNAM SATYA AMRUTHA

In this article, we will discuss the operator’s precedence in C++. We generally solve mathematical expressions which have many operators. Similarly, C++ provides us with diff.... Read More

Related Posts