Posts from Python

Create a date picker calendar in Python Tkinter

By Manam Sampath Kumar Reddy

There are many libraries in Python which provide Graphic User Interface(GUI) features like PyQt5, Kivv, Tkinter, etc… Among these Tkinter is the most commonly used library f.... Read More

Python program to arrange names in alphabetical order

By Sai Mukesh Reddy Gutha

Hello Coder! In this article, we will be learning to arrange names in alphabetical order in Python. We use the sort() inbuilt method of List Data Structure to arrange names in alph.... Read More

Extracting Title and headers of a Web Page using BeautifulSoup in Python

By Sai Mukesh Reddy Gutha

Hello Coder! In this article, we are going to learn how to extract the title of a web page using BeautifulSoup in Python. What is BeautifulSoup? BeautifulSoup is a Python library t.... Read More

How to add a column to a NumPy array in Python

By Nikhil Vaddipati

Hello folks, in this tutorial we are going to learn how to add a column to a NumPy array in Python language. Two methods are discussed below. It is obvious that we need to import N.... Read More

Loan Eligibility prediction using Machine Learning Models in Python

By Kanduri Jayanth Sri Ram

In this tutorial, you will learn how to predict the loan status using machine learning models in Python. Loan Eligibility prediction using Machine Learning Steps involved: Loading .... Read More

Creating Analog Clock using PyQt5 in Python

By Tuhin Mitra

In this post, I’ll show how to create an Analog Clock using PyQt5. I am using Python 3.7 throughout all the programs and this should work fine in Python3.8 also. The analog c.... Read More

Check internet speed in Python using speedtest-cli

By Varsha Neelamma

The internet today has become the easiest medium to connect with people and happenings across the world. Every second work you want to get done involves the internet these days. Th.... Read More

Set environmental variables in Python

By C.Surya Venkat

In this tutorial, we are going to learn about setting environmental variables in Python. Before learning how to set environmental variables in Python we will first learn what are e.... Read More