Posts by Ankita Khan

Author Biographical Info: Not available

Replace comma with a new line in a text file using C++

By Ankita Khan

In this tutorial, we will learn how to replace the comma with a new line in a text file using C++. Before proceeding to the solution, let us learn about dealing with text files in.... Read More

list insert() in C++

By Ankita Khan

In this tutorial, we will learn about list insert() in C++. The list insert() function in C++ inserts an element at any particular place on the list. This function takes three arg.... Read More

Replace comma with a new line in a text file using Python

By Ankita Khan

In this tutorial, we will learn how to replace the comma with a new line in a text file in Python. Before proceeding to the solution, let us learn about dealing with text files in.... Read More

Insert space after a certain character in C++

By Ankita Khan

In this tutorial, we will learn how to insert a space after a certain character in a string in C++. Before start writing our program, It is good to make an algorithm to determine h.... Read More

Add a space after comma in a string in C++

By Ankita Khan

In this tutorial, we will learn how to add a space after comma in a string in C++. Before writing any code, we should always make an algorithm to determine how to achieve the objec.... Read More

Comma-separated string to tuple in Python

By Ankita Khan

In this tutorial, we will learn how to convert the comma-separated string to a tuple in Python. Before proceeding to the solution, let us understand the problem first with a simpl.... Read More

Count the number of spaces in a string in Python

By Ankita Khan

In this tutorial, we will learn how to count the number of spaces in a given string in Python. Before proceeding to the solution, let us understand the problem first with a simple .... Read More

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

Related Posts