Posts from Python

How to make a file read only using Python

By Venkat Kumar

In this article, we will discuss how to modify the permissions of a file and make a file read-only using Python. You may need this for automating daily activities using Python scri.... Read More

How to extract audio from video in Python

By Venkat Kumar

In this article, we will discuss how to extract audio from a video in Python. You may need this as a feature of your project or for automating tasks using Python scripts. moviepy l.... Read More

Multiclass Classification using Scikit-Learn

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning about Multiclass Classification using Scikit-Learn machine learning library in Python. Scikit-Learn or sklearn library pro.... Read More

Find the common elements in two lists in Python

By Shriprakash Tiwari

In this tutorial, We are going to learn how to find the common elements in two lists in Python. To find the common list from two lists, we have to store the common elements in the .... Read More

OpenWeatherMap Tutorial in Python using PyOWM

By Snigdha Ranjith

In this tutorial, we will learn OpenWeatherMap tutorial in Python using PyOWM. This tutorial includes the following: How to get API key from OpenWeatherMap Get weather data from Op.... Read More

Count number of rows and columns in an excel file in Python

By Neelesh Biswas

Who doesn’t know about Excel Files these days? Whether you tabulate the score of an exam of a class in schools or you make a bill and store information of a payment you have .... Read More

Check if a string is a keyword or not in Python

By Sachin Rastogi

In this article, we are going to learn how to check whether the given string is a keyword or not in Python. For this, we have to first understand what is Keyword. Keyword:– .... Read More

Weather script using OpenWeatherMap in Python with GUI

By Snigdha Ranjith

In this post, we will learn how to create a weather script using Python. We will use the Python OpenWeatherMap API (PyOWM) to get the weather details. At the end of the post, you w.... Read More

Related Posts