Posts from Python

Change case of all characters in a .txt file using Python

By Ram Uday Kumar

If you want to change the case of all characters in a .txt file in Python then the steps will be: the first line will open the file in reading using .read() function mode located i.... Read More

How to print quotation marks in Python

By ANJANEYULU DEVARASETTY

In this tutorial, we will learn about how to print quotation marks in Python. We will learn both printing single quotes and double quotes string in Python. Quotation Marks in Pytho.... Read More

Replace all occurrences of a word in a string in Python

By ANJANEYULU DEVARASETTY

In this tutorial, we will learn how to replace all occurrences of a word in string and n occurrences of a substring in Python Programming. replace(): replace() is a built-in functi.... Read More

Create array from another array in Python (Copy array elements)

By Varsha Neelamma

In this tutorial, you will learn how to create an array from another (existing) array in Python. In simpler words, you will learn to copy the array elements into another array. You.... Read More

How to Reverse a Linked List in Python

By ANJANEYULU DEVARASETTY

 In this tutorial, we will learn how to reverse a Linked List in Python. LinkedList is a sequence of data elements that are linked/connected through links. Each data element is co.... Read More

Increment number by 1 in Python

By Varsha Neelamma

In this tutorial, you will learn how to increment a number by 1 in Python. If you are used to programming in languages like C++ and Java, you will be acquainted with using the incr.... Read More

Save multiple matplotlib figures in single PDF file – Python

By Meha Nair

In this tutorial, we will look into how multiple plots can be saved in a single pdf file. In many cases, we require our output to be in a particular format, which we can easily obt.... Read More

Microsoft Stock Price Prediction with Machine Learning

By Devansh Parikh

In this project, I have used a machine-learning algorithm to predict the stock price of one of the largest tech companies named Microsoft using Python. Dataset Link: MSFT.csv Step-.... Read More

Related Posts