Posts from Python

Desktop Notification In Python

By Mohit Tripathi

Hello friends, In this segment, we are going to discuss how to create a desktop notification using Python. So before start writing program for creating a desktop notifier. Let me t.... Read More

Language Detector In Python

By Mohit Tripathi

Hello friends, in this segment we are going to discuss how to make a language detector program using Python. So let me tell you how the language detector works. It simply takes inp.... Read More

Memory Management in Python

By Madhav

If you want to know about Memory Management in Python then you are at the right place, please go through this article, you will be familiar with Memory Management and Garbage Colle.... Read More

List and Dictionary Manipulation in Python

By Tirthesh Pawar

HELLO Pythonists, today we are going to learn about List and Dictionary manipulation in Python. Before we dive deep into our main topic lets have a basic introduction to Lists and .... Read More

Predict Population Growth Using Machine Learning in Python

By Abhisikta Chakraborty

In this tutorial, we will learn how to predict population growth using Machine Learning in Python. We will follow the approach in Python and implement a very popular yet very basic.... Read More

Interactive Mode and Script Mode in Python

By Tirthesh Pawar

Here we are going to learn about “INTERACTIVE MODE” and “SCRIPT MODE” in Python. Let’s dig into the topics one by one to have a clear understanding a.... Read More

numpy.split | Split an array into multiple sub-array in Python

By Kakali Mukherjee

In this article, we will learn how to split an array into multiple subarrays in Python. So, for dividing an array into multiple subarrays, I am going to use numpy.split() function..... Read More

Delete all the png images from a folder in Python

By Sourav Dutta

In this tutorial, I will discuss how you can delete all the png images from a specific folder using Python. For this we need to import os module, it’s a built-in module of Py.... Read More