Posts from Python

How to calculate and plot the Normal CDF in Python

By Sourav Rastogi

First, we will import some libraries numpy, scipy, and Matplotlib. numpy for numerical operations,scipy. stats for statistical functions and matplot for plotting the plot. import n.... Read More

Make Python Dictionary keys Case insensitive – CaseInsensitiveDict

By Saruque Ahamed Mollick

Today, I found a cool thing in Python. Actually, this function is a part of requests module. Using CaseInsensitiveDict of requests module, we can easily make our dictionary to be c.... Read More

To Do list GUI app using Tkinter in Python (Pie chart included) – Full code

To Do list GUI app using Tkinter in Python (Pie chart included) – Full code

By Saruque Ahamed Mollick | July 29, 2024

In this Tkinter tutorial, I am going to share you with full Python code of a Tkinter GUI application which is To do app. I am considering  it as the best To do app that you will find on the internet built using Python. The reason is, here I have made an easy-to-understand interface for […] Read More

University Admission Prediction using Keras in Python

By Om Tejaswini

This post aims to predict the likelihood of a student being admitted into a university based on some factors. A predictive model is developed using neural networks to do this task .... Read More

Text Clustering using K-Means with Sklearn

By Om Tejaswini

K-Means Clustering Algorithm: K-Means clustering is a machine learning method that helps to organize data into groups based on how similar or different they are. The goal is to div.... Read More

Pass argument to a Button command function in Tkinter

By Saruque Ahamed Mollick

In this Tkinter tutorial, we will learn how to pass an argument to a button command function. We can pass arguments in two different ways. Using lambda Using nested function Pass a.... Read More

Set default text in Tkinter Entry widget

By Saruque Ahamed Mollick

In this tutorial, I will show you how easily we can set any text as the default text in the Tkinter Entry widget. You can also say that I will set placeholder text for Tkinter Entr.... Read More

Principal components regression in ML – Python

By Saumya

Learn how to perform principal components regression in Machine learning using Python. PCR is used to reduce dimensions in a dataset by projecting them in lower dimension space and.... Read More