What is ‘b’ in front of string and how to remove that in Python?

By Varsha Neelamma

If you are familiar with Python, you may be well aware of the different Python data types including strings and bytes. While programming, you may have come across strings with R.... Read More

How to Add an Image in JFrame

By Anirudh Jakhotia

Hello, folks!. In this tutorial, we will learn and focus on how to add an image in Java JFrame. Create a Java JFrame Firstly, we import the Java AWT and Java Swing libraries into o.... Read More

ImageFile module in Pillow

By Varsha Neelamma

Pillow is a successor project of Python’s original image processing module, the Python Imaging Library (PIL), which is in discontinuation since 2011. It provides various func.... Read More

Download all images of a webpage using Python

By Varsha Neelamma

Whenever you visit any webpage, you may come across different types of content, ranging from text to images, audio to videos. Sometimes, you just want to read the content, catch a .... Read More

Convert a string to a number in JavaScript

By Manoj Srinivas

In this tutorial, we will learn how to convert a string to a number in JavaScript. In projects, it is often needed to convert number formatted string into integer formatted number .... Read More

lower_bound() and upper_bound() in Vector of Pairs in C++

By Joyeeta Choubey

Hi folks! In this tutorial, we are going to learn and implement lower_bound () and upper_bound() in the vector of pairs in C++. Before moving forward let’s have a look at wha.... Read More

vector :: cbegin() and vector :: cend() in C++

By Joyeeta Choubey

Hello folks! In this tutorial, we are going to learn what are vectors and also learn about the functions vector::cbegin() and vector::cend() in C++ program. Vectors are known as dy.... Read More

Sort a list using stream.sorted() in Java

By Kratika Jain

In this tutorial, we will learn about How to sort a list using stream.sorted() in Java. Before getting into the coding let’s know about java 8.  Introduction to Java 8 Java .... Read More