How to Create an Array of Pointers in C++

By Aayush Kumaria

Hey guys, Today we will be learning how to create an array of pointers in C++ So read on… What is a pointer? A pointer is nothing but a value stored in a variable that points.... Read More

How To Convert JSON To CSV in Python

By Bikram Mondal

In this tutorial, We will learn how to convert JSON (JavaScript Object Notation) to CSV (Comma Separated Values) file using Python. JSON is a popular data format used for data mani.... Read More

How to Get the Dimensions of an Image in Python

By Mohan Sai Varun Kasarla

In this tutorial, you will learn how to get the Dimensions of an Image in Python. For this, we use Python Imaging Library (PIL) Module. PIL consists of variousĀ  Classes. We requir.... Read More

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

Related Posts