Get particular column from a CSV file in C++

By Arjun Singh

We can access the CSV file in C++ using the reading function. So, today we are going to perform this. CSV file: CSV file is a comma-separated file used to collect the data in tabul.... Read More

How to find the resolution of an image in C++

By Arjun Singh

We have a collection of images of different resolutions. So today we are going to find the resolution of a particular image using C++. Resolution of an image in C++ Resolution is i.... Read More

How to open a URL in Python

By Sumit Chhirush

In this tutorial, we are going to learn how to open a URL in Python. Here we use the Python program to open the URL with the help of python libraries. There are many methods to ope.... Read More

How to access index in for loop in Python

By Varun Bhattacharya

Hello programmers, we will see how to access index values in a for loop in Python in this tutorial. Accessing index values and their corresponding values can be helpful in various .... Read More

How to remove HTML tags from a string in Python

By Aditi Deo

Sometimes, when we try to store a string in the database, it gets stored along with the HTML tags. But, certain websites need to render the strings in their raw format without any .... Read More

How to get query string values in JavaScript

By Ankit

In this tutorial, we will discuss how to get string values in JavaScript. Today, we’ll learn several efficient solutions to get query string values in JavaScript. 1. How to g.... Read More

Kernel() method in Python PIL

By Vanshika Namdev

In this tutorial, we are learning kernel() method of PIL in Python.  Python Imaging Library(PIL) is a free library in Python programming language which is used for image editing. .... Read More

Bound methods in Python

By Caushik Subramaniam

The Bound methods are the methods defined in a class. The bound methods are bound to the class in which they are defined. They take an instance of their class along with the other .... Read More