Posts from Python

Image Captcha with GUI (Tkinter) | Python

By Karan Trehan

Captcha! That sounds like Gotcha! Well, CAPTCHA stands for Completely Automated Public Turing test to tell Computers and Humans Apart. It does sound similar to gotcha as it detects.... Read More

Eliminating duplicates from a list using a single code of line in Python

By Sai Mukesh Reddy Gutha

Hey Coder! In this article, we are going to learn how to eliminate the duplicate elements of a list using a single line of code in Python. We are going to use one of the properties.... Read More

Possibility of Triangle with Given Angles in Python

By Srishti Chakraborti

In this tutorial, we will solve a task to check the possibility of a triangle with positive area in Python. We will take the three angles of the triangle as input. We have to see.... Read More

Generating Lyndon words of length n in Python

By Abinash Reddy

In this article, we will learn how to generate Lyndon words of a specified length n in Python. A Lyndon word is a non empty string that is strictly smaller in lexicographix oreder .... Read More

Implementation of Latin Alphabet Cipher in Python

By Abinash Reddy

In this article, we will learn how to implement Latin Alphabet Cipher in Python. The Latin Alphabet Cipher Encryption Technique is one of the soonest and easiest methods of encodin.... Read More

Checking for Smith Number in Python using Functions

By Souhardya Ganguly

In this Python tutorial, we will learn about Smith Numbers and how to generate them in Python. What are Smith Numbers? Smith numbers have the following features:- They are composit.... Read More

How to check whether matrix is a singular or not in Python

By Abinash Reddy

In this article, we will how to check whether a given matrix is a singular matrix or not in Python. A matrix is said to be a singular matrix if its determinant is equal to zero. Ex.... Read More

Check Whether String is Palindrome or Symmetrical in Python

By Srishti Chakraborti

In this tutorial, we will check whether a given string is Palindrome or Symmetrical using the Python language. Before doing this task, we need to know about a string in Pyth.... Read More

Related Posts