Posts from Python

How to plot a solar image in Python

By Divya Junuthula

In this tutorial, we will learn how to plot a solar image using Python. We can plot the solar image using a sunpy package. by using this package we can analyze the solar data. Fi.... Read More

Converting PDFs to JPEG using Python

By Harshil Gupta

In this tutorial, we will see how to convert all the pages of pdf into jpeg format using the pdf2image library in Python 3. It is a powerful open-source library that provides a dir.... Read More

Find K’th largest element in a stream in Python

By Zala Dhaval

In this tutorial, you will learn how to find the K’th largest element in a stream in Python. First, understand the question. We have a stream of numbers like “1,5,3,10,.... Read More

How to solve Boolean Parenthesization Problem in Python

By Suyash pratap Singh

In this tutorial, we will learn about an array 1/0 operand and another array operator. The number of different methods (parentheses) used to group these operands is always correct..... Read More

How to check for a valid sudoku in Python

By Suyash pratap Singh

Hello friends, In this tutorial, we learn about Sudoku game, which is represented as 9 * 9 matrix. The following conditions are given below: Check the sum on each line. Check the a.... Read More

Solve N Queen Problem in O(n) space in Python

By Ambuj Verma

In this tutorial, we will learn about how to solve the N Queen problem in O(n) space using Python language. N Queen Problem: This problem is just like a puzzle. In the NxN chessbo.... Read More

How to combine similar characters in a Python List

By Ambuj Verma

Given a list or string, the task is to combine all similar characters of the list or string and print in a list. First, find the frequency of all characters and store in a dictiona.... Read More

Colorization of images using CNN in Python

By Akarsh Shekhar

In this tutorial program, we will learn about the colorization of images using deep learning techniques using the Python programming language. So here I am going to discuss what ar.... Read More

Related Posts