Trigonometric and Angular functions in Python

By Ankita Khan

In this tutorial, we will learn about the different trigonometric and angular functions in Python. The Python programming language supports a wide variety of built-in functions. Th.... Read More

How to rename columns in Pandas DataFrame?

By Rani Bane

In this article, we will study how to rename columns in Pandas DataFrame using Python. Let’s understand first what is Pandas and DataFrame. Pandas is an opensource library th.... Read More

Find the Gradient of an Image in Python

By Rahul Singh

In this tutorial, we will learn how to find the gradient of the image in python. After this tutorial able to find the gradient of an image in X, Y, both directions and use of some .... Read More

Remove the Last Line from a Text File in C++

By Rishabh Thukral

In this tutorial, we will learn about how to Remove the Last Line from a Text File in C++. Opening a File fstream file; file.open("abc.txt",ios::in); //'in' is a type of file mode.... Read More

How to remove elements from a tuple in Python

By Anish

In this tutorial, we will learn how to remove elements from a tuple in Python. A tuple is a list of immutable objects. In other words, the elements in a tuple cannot be modified or.... Read More

Merge two dictionaries in Python using update and double star

By Anish

In this tutorial, we will learn how to merge two dictionaries in Python using update and double star method. There are a number of ways in Python, to merge two dictionaries create.... Read More

Hospital Management System using core Java

By Kamalpreet Singh

In this tutorial, we will learn to make a Java project ie. HOSPITAL MANAGEMENT SYSTEM. Many college or school students want to make attractive projects but due to insufficient know.... Read More

Comma separated string to Array in C++

By Ayush Tripathi

Hello, guys in this tutorial we will learn how to insert comma-separated string to an array in C++. To understand a topic we need to look at some examples. Convert comma separated .... Read More

Related Posts