Get name and extension of file from absolute path in C++

By Aakanksha Thakar

In this tutorial will see the C++ code to get the file name and the extension from its absolute path. The file’s absolute path is a path from its root folder. Each folder is .... Read More

Python strip() with example

By Amandeep Singh

We’ll study a Python String strip() function in this tutorial with the aid of examples. Python String strip() Method The string’s leading and trailing characters are.... Read More

Add a character to a specific position in a string in Python

By Prachi Pandey

In this tutorial, you will learn how to add a character to a specific position in a string in Python. When it comes to programming, strings are considered to be a sequence of chara.... Read More

Call a function from another class in Swift

By Khushi Aswani

In this tutorial, we will create two classes and try to call a function from Class 1 in Class 2. This helps in various tasks of classes and their objects. We will create a class na.... Read More

How to melt multiple columns in Pandas Python

By Kovid Bhatt

In the Pandas DataFrame, you can melt multiple columns of the entire DataFrame with the help of the pd.melt() function and in this Python article, we will see how to implement this.... Read More

Removing empty tuples from a list in Python

By Vanshika Namdev

In this article, we are gonna see how to remove empty tuples from a list in Python. We will see two ways through which we can remove empty tuples from the list in Python. It is sim.... Read More

Convert text to an image in Python using Aspose.Words

By Aakanksha Thakar

In this tutorial, we are going to see how to convert text to an image in Python. This can be easily done by using the Aspose.Words library. This library is used to process document.... Read More

Remove special characters from a string except space in Python

By Khushi Aswani

This tutorial is about removing the special characters in a string where we need to remove all the special characters except for a space in the string. This is a very interesting t.... Read More