Printing all perfect squares from a list in Python using list comprehension and math module

By Souhardya Ganguly

In this tutorial, you will learn how to check whether the elements in a Python list entered by the user are perfect squares or not using list comprehension and the math module. Lis.... Read More

Construct a String from another String using Suffix Trie in Python

By Manan Kumar

In this tutorial, we are going to take a look at the task of making a string from substrings of another string using a data structure known as Suffix Trie in Python. Specifically, .... Read More

How to assign a value to a TensorFlow variable in Python

By Sumit Singh

Today in this tutorial, we will learn about how to assign a value to a variable in TensorFlow with Python code example. Variables in a model are those that hold and update the para.... Read More

Kahan Summation Algorithm Implementation in Java

By Monika Maheshwari

In this section, we are going to learn about Kahan Summation Algorithm and implement it in the Java program. This algorithm is also known as compensated summation, it is generally .... Read More

How to reduce Bias in Machine Learning

By Ujjwal Tyagi

Hello fellow machine learning enthusiasts, today we are going to learn about how to reduce Bias in Machine Learning. Well, we all have reached the stage, where even after trying ev.... Read More

How to draw an arc in C++

By Arpit Jain

Hi guys, today we will see how to draw an arc in the C++ language. Before, we start, let me tell you that whenever we want to create any graphic in C++, we have to add a header fil.... Read More

Inheritance vs Delegation in Java

By Abhay Shah

The following tutorial explores Inheritance vs Delegation in Java language. What is Inheritance? Inheritance is among the four main features (Encapsulation, Abstraction, Polymorphi.... Read More

Removing all consonants from a string in Python

By Premkumar Vemula

In this article, we will explore various ways in which we can remove all the consonants from a given string in Python. The simplest way would be to convert a string to a list and r.... Read More