Facial Expression Recognition using Keras

By Yash Aparajit

In this tutorial, we will learn about Facial Expression Recognition using Keras. What is Facial Recognition? It is a technology that allows computer systems to identify or recogniz.... Read More

Display a float with two decimal places in Python

By Preethi

In this tutorial, you will learn how to display a float with two decimal places in Python. You can also display one decimal place or more than two decimal places, this methods are .... Read More

Use of tilde operator in Python

By Preethi

In this tutorial, you will learn the use of the tilde(~) operator in Python. The tilde(~) operator is a part of the bitwise operators in Python. The tilde(~) is also called a compl.... Read More

Convert hex string to float in Python

By Preethi

In this tutorial, you will learn how to convert a hex string to a float in Python. You cannot directly convert a hex string into a float. First, you have to convert the hex string .... Read More

Shuffle array elements in Java

By TONDAPU NIRUPAMA REDDY

Hey there, code champs! In this tutorial, you are going to learn a Java program to shuffle elements in an array. We are going to achieve this by using the Random class in Java. Ran.... Read More

Reverse the order of a legend in Python – Seaborn

By Srihitha Nadella

Let’s learn to reverse the order of a legend in Python using seaborn. Seaborn is a well-used Python library that amplifies Matplotlib’s capabilities by giving developers .... Read More

How to create a new column in Pandas – Python

By Srihitha Nadella

Let us learn to create a new column in pandas! Pandas is an open-source data manipulation module. It is built on top of the Numpy Library. Pandas has a lot of benefits- Analysis be.... Read More

How to find the smallest element in an array in Java

By TONDAPU NIRUPAMA REDDY

Hey, fellow code crafters! In this tutorial, you are going to learn the Java program to find the smallest element in an array. This can be achieved in two approaches. Java Program .... Read More

Related Posts