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
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
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
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
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
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
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
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