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

Serialization and Deserialization in Java

By Caushik Subramaniam

Serialization in Java refers to the process of translating the state of an object to a byte stream. The serialization was introduced in Java 1.1. This process is also called Marsha.... Read More

Radar chart in pygal

By Varsha Neelamma

You must be aware that Python provides you with several libraries to facilitate different types of tasks. Pygal is one such Python library that you can use for data visualization. .... Read More

Replace a character of a string by it’s index in Python

By Sumit Chhirush

In this tutorial, we are going to learn about how to replace a character of a string by its index in Python. For example, we have a string “python” and we have to replace a cha.... Read More

How does this keyword work in JavaScript?

By Ankit

In this tutorial, we will learn how this keyword works in JavaScript. For JavaScript developers, defining the context that this refers to is one of the most confusing topics. There.... Read More