Posts from Python

How to get current time in Python

By Mariya Banatic J

There are several ways to get the current time in Python. This tutorial will show you various simple methods that are available in Python to do this. The following are the topics t.... Read More

Python program to calculate EMI

By Sachin Rastogi

In this article, we are going to calculate the monthly EMI of any principal amount with Python programming. For this task first, we need to understand that what is EMI. EMI:- EMI .... Read More

How to set default argument for function in Python

By Anish

In this tutorial, we will learn how to set a default argument for any function in Python. In Python, we can call a function without any argument. This function will then get its de.... Read More

How to find day name from date in Python?

By Mariya Banatic J

This tutorial will show you how to find the day name from the given date in Python. We can use strptime() or strftime() function to do this task. Below are two methods to get day n.... Read More

Find cube root of a number in Python

By Shriprakash Tiwari

In this tutorial, we are going to learn how to find the cube root of a number in Python. How to find the cube root of a number in Python Update: Some of our viewers reported the co.... Read More

License Plate Recognition using OpenCV in Python

By Gaurav Babbar

This tutorial will tell you the way to implement License Plate Recognition from car image in Python program using OpenCV and Pytesseract. Let’s begin and implement it now ste.... Read More

Print all positive numbers from a list in Python

By Shriprakash Tiwari

In this tutorial, We are going to learn, how to print all positive numbers from a list in Python. There are various ways to find all positive numbers from a list in Python. As we k.... Read More

How to shuffle elements of a tuple in Python

By Karthik Balaji

In this article, you can learn how to shuffle elements of a tuple in Python. In Python, Tuple is used to store immutable objects. (i.e) the values cannot be changed. Consider an ex.... Read More

Related Posts