How to install Mahotas in Python

By Sanam Sahoo

Hello, Coders!! In this section, we will learn how to install the Mahotas library for Python on Windows and Linux systems. The Mahotas library is a collection of functions and algo.... Read More

Alternative to scipy.misc.imresize() in Python

By Suchita Sriramka

In this short tutorial, we will see what the problem with scipy.misc.imresize() in Python is which was previously used to resize an image. Next, we will see some alternatives to th.... Read More

Sum of two columns in openpyxl and result in a new column

By Sanam Sahoo

Hello, Coders!! In this openpyxl tutorial, we will learn how to sum two columns and print the results in a new column using openpyxl in Python. You can get more details about the u.... Read More

Check if a given date is weekend or not in C++

By Sanam Sahoo

In this tutorial, we will learn how to check if a given date is a weekend or not in C++. We will first define a function that will calculate the day of the week using the given dat.... Read More

Find the Page Number of a Text from a PDF file in Python

By Anamika Roy

Here we will discuss how to find the page number of a text from a PDF file in Python. It is used for many purposes. You may need it while making software or doing a project. While .... Read More

Delete pages from a PDF file in Python

By Anamika Roy

In this tutorial, we will learn how to delete pages from a PDF file in Python. While working with PDF files we may need to delete some unwanted pages from the PDF.  Sometimes it w.... Read More

How to define a mathematical function in SymPy?

By Varsha Neelamma

Mathematics acts as a base aid for analyzing and modeling patterns, creating and applying algorithms, statistical analysis etc. Thus, mathematical operations play a major role in m.... Read More

How to count the number of pages in a PDF file in Python

By Anamika Roy

We will discuss how to count the number of pages in a PDF file in Python here. In our daily uses, while working with a PDF file, we may need to know how many pages are there. While.... Read More

Related Posts