Posts from Python

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

Extract Tables from PDF in Python

By Anamika Roy

We are going to learn about how to extract tables from PDF in Python. While programming in many cases, we need to work with table data. But if they are in the PDF, we need to extra.... Read More

ImageOps Module in Pillow

By Shailesh Bhimanpelli

Hello Programers! Continuing our topic on the pillow Python library we take a look at our next module that is the ImageOps module of Python. This module contains a number of ready.... Read More

How to use numpy.percentile() in Python

By Venkat Kumar

In this article, we will see how to make use of numpy.percentile() in Python. Before going into discussing the method, let’s first see what percentile means. A percentile val.... Read More

How to create a numeric sequence in Python using NumPy

By Venkat Kumar

In this article, let’s see how to create a numeric sequence in Python using NumPy. NumPy is a module that is commonly used for scientific, statistical analysis. NumPy arrays .... Read More

Flask-Cookies explained and how to use them?

By Mridul Goyal

In this part of the flask tutorial, we are going to learn about cookies in Flask. We are also going to learn why are they essential for any web page and how to implement them in ou.... Read More

Related Posts