Posts by Jagannath@cr7

Author Biographical Info: Programming Lover, Enthusiastic about new Tech and obviously a die-hard fan of Cristiano Ronaldo.
Presently pursuing 3rd-year ECE at GIET, Rajahmundry [2017-2021].

Calling a function from another function in Python

By Jagannath@cr7

In this tutorial, we will learn how to call a function from another function in Python. Let’s focus on the definition of a function. Certainly, a function consists of a set o.... Read More

How to check if an item exists in a list in Python

By Jagannath@cr7

In this tutorial, we will learn how to check if an item exists in a list in Python. As we know, a list is a collection of different elements. Certainly, there would be a requiremen.... Read More

Difference between remove, del and pop in Python list

By Jagannath@cr7

Let’s know the basics of removing items in a list. First of all, let’s discuss how a list looks like. Moreover, it will be helpful because those methods are based on li.... Read More

Converting a List into a Dictionary in Python

By Jagannath@cr7

In this tutorial, we will learn how to convert a list into dictionary in Python. A list is a collection of different data. In Python, a list shows the following features. It is a m.... Read More

Extracting Text from a Pdf file in Python

By Jagannath@cr7

In this article, I am going to let you know how to extract text from a PDF file in Python. Before diving into the topic, a lot of things need to be configured. The pdftotext module.... Read More

How to convert image into pdf in Python

By Jagannath@cr7

In this tutorial, we will learn how to convert image to pdf file in Python using img2pdf. An image can be of any format with extensions like jpg or png. A pdf is an electronic im.... Read More

Convert a Dictionary into a List in Python

By Jagannath@cr7

In this tutorial, we will learn how to convert a dictionary into a list in Python with three different methods. A Dictionary is an unordered sequence that is mutable. Certainly, it.... Read More

Convert a List into a String in Python

By Jagannath@cr7

In this tutorial, we will learn how to convert a list into a string in Python. The string we are going to create will contain all the items of the list. We can also add a separator.... Read More

Related Posts