Posts from Python

How to download files from URL using python?

By Asma Khan

In this tutorial, we will learn how to download files from URL using python. Before getting on to the actual code, let us see some prerequisites for the same. Requests module As we.... Read More

Python Function To Display A Calendar

By Svarnim Agarwal

In this tutorial, we will be looking at a Python function to display a calendar, i.e. all the dates of a month, of any year. The year and month are inputted by the user. This is a .... Read More

Check if the given date is valid or not in Python

By Bipin Kumar

Hello friends, in this tutorial I will tell you how to check the validity of a date in Python. Check validity of a date in Python To check the validity, I have used the datetime mo.... Read More

Remove vowels from a string in Python

By Rahul Khanna

In this tutorial, we will talk about How to remove vowels from string in Python. So, in order to understand the code first, we need to understand what is a string. What is a Stri.... Read More

How to plot ROC Curve using Sklearn library in Python

By CHITRANSH PANT

In this tutorial, we will learn an interesting thing that is how to plot the roc curve using the most useful library Scikit-learn in Python.  This tutorial is a machine learning-b.... Read More

Detect number of faces from an image in Python using OpenCV

By Bipin Kumar

In this tutorial, We are going to learn an interesting thing which is how to detect the number of faces in an image using OpenCV in Python. This tutorial is a machine learning base.... Read More

How to get the size of a folder in Python?

By Asma Khan

In this tutorial, we will learn how to get the size of a folder in Python. Let us first see some prerequisite required for this code. The OS module in Python enables us to interact.... Read More

How to find the last Saturday of the month in Pyhton

By Rahul Khanna

In this tutorial, we will talk about How to find the last Saturday or any other day of the month in Python. So in order to understand this tutorial first, we need to understand abo.... Read More

Related Posts