Posts from Python

How to Add Watermark to a PDF File Using Python

By Sushant Shaw

Hey there everyone, Today we are going to learn how to add a watermark to a pdf file using Python. We will be using the PyPDF2 library of Python which is capable of merging two pdf.... Read More

How to get the last element from a tuple in Python?

By Rani Bane

Here we are to see how to get the last element from Tuple using Python as Programming Language. For this task, we need to understand the concept of Indexing. Let’s understan.... Read More

How to implement list as stack in Python

By Vimal Pandey

Hello guys, in this tutorial we will learn how to implement a list as a stack in Python. The list is a collection of objects of different data types. The list is a sequence of muta.... Read More

Packing and unpacking arguments in Python

By Vimal Pandey

Welcome back, guys. In this post, we will learn about packing and unpacking the arguments in Python while passing it to the functions. How to pack and unpack arguments in Python Le.... Read More

How to check a perfect number using Python

By Rudresh

In this tutorial, we will learn how to check a perfect number in Python. Perfect Number: In number theory, a perfect number can be defined using two definitions. Definition 1: A po.... Read More

Python divmod() function

By Ranjeet V

Hey guys, in this tutorial, we are going to learn how we can use Python divmod() function in our programs to find the quotient and remainder of a division operation. Go through thi.... Read More

What is PIP in Python?

By Prasad Tale

PIP is an inbuild(for python version3.4 & above) Python packages manager that can be used to install or uninstall a Python package, for example, like TensorFlow, pandas, etc. I.... Read More

Remove a Specific Color From An Image in Python

By Sushant Shaw

In this tutorial, we are going to learn how to remove a specific color from an image in the Python program. To achieve this, we will use the PIL python library. PIL allows us to ma.... Read More

Related Posts