Posts from Python

How to get the list of all available fonts in Tkinter

By Saruque Ahamed Mollick

In this tutorial, we will learn how to get the list of all available fonts in Tkinter. We have to import font module like this: from tkinter import Tk, font font.families() will re.... Read More

Similar movie prediction in Python

By KAPIHLL KUMAR MUTHINENI

In this tutorial, we will learn how to build a Similar Movie Prediction model using the Scikit-learn library in Python. This model predicts similar movies by comparing their overvi.... Read More

Find-S algorithm using Python

By Om Tejaswini

In this article, we will learn how to implement the Find-S algorithm in Machine Learning. It is a concept learning algorithm in ML. This algorithm only considers positive training .... Read More

Change Tkinter window size with variables – Dynamic

By Saruque Ahamed Mollick

In this tutorial, we will learn how easily we can change Tkinter window size with variables dynamically in Python. At first, I will show you how to do this using a custom function .... Read More

Set Tkinter Window Fullscreen at starting – Python

By Saruque Ahamed Mollick

In this tutorial, we will learn how to set the tkinter window at full screen size when starting the window or running the program. I will show you different methods to do the same..... Read More

from tkinter import * vs import tkinter in Python

By Saruque Ahamed Mollick

Let’s learn whats the difference is between using from tkinter import * and import tkinter as tk. Both of those will work fine for your program. If you use from tkinter impor.... Read More

How to start Tkinter window at a specific position of your display

By Saruque Ahamed Mollick

In this tutorial, we will learn how to start the Tkinter window at a specific position of your display. It’s much simpler than we think. Let’s first create a simple win.... Read More

Fetch JSON data from URL and store in excel file in Python

By KAPIHLL KUMAR MUTHINENI

In this tutorial, we will try to fetch JSON data from URL and store in excel file in Python. JSON (JavaScript Object Notation) is a lightweight data-interchange format that’s.... Read More

Related Posts