How to provide Favicon to a Webpage

By Saurabh Singh

In this tutorial, I will show you how easily you can add Favicon to a webpage using HTML. As we know how much matter a logo to a company, It acts as a face. That’s why this p.... Read More

How to create a text file in Python

By Saruque Ahamed Mollick

To create a text file in Python you will need to work with the file object. In order to create a text file and add some text content in this file, you will need to use two inbuilt .... Read More

Sorting a list of objects of user-defined class using Comparator interface

By vikrant_tomar

Sorting is vital in every aspect of programming. The java.util.Collections.sort() function can be used to sort the elements of a list of a predefined data type. The Comparator inte.... Read More

How to generate random number in Python

By Saruque Ahamed Mollick

Python has its own module to generate a random number. The module is the random module. By using this special module you can easily generate random number in Python. In this tuto.... Read More

Concept of Inheritance, Superclass and Subclass in Python

By Neha Mishra

Here we are going to learn the basic concepts of Inheritance in Python. In order to understand what inheritance is we should first dive in superclass and subclass. Concept of Inher.... Read More

Simple Example of Linear Regression With scikit-learn in Python

By Faruque Ahamed Mollick

Linear Regression is a linear approach which is useful for finding a relationship between predictor or independent variable and response or dependent variable. In simple word, if.... Read More

How to detect strings that contain only whitespaces in Python

By Saruque Ahamed Mollick

To check if a string is containing only white spaces or not you can use the isspace() method in Python. This tutorial is to show you how to detect strings that contain only whitesp.... Read More

How to make a Heart using only CSS

By Saurabh Singh

In this tutorial, I will show you how easily you can make a heart using CSS. I’m styling it inside a head tag in a style tag. In body, I’m taking a div class name as he.... Read More

Related Posts